28 lines
941 B
TypeScript
28 lines
941 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
import PageHeader from "../../components/common/PageHeader";
|
|
import { PieChartIcon } from "../../icons";
|
|
|
|
export default function Mapping() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Content Mapping - IGNY8" description="Keyword to content mapping" />
|
|
<PageHeader
|
|
title="Content Mapping"
|
|
badge={{ icon: <PieChartIcon />, color: 'indigo' }}
|
|
/>
|
|
<ComponentCard title="Coming Soon" desc="Keyword to content mapping">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Content Mapping - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Map keywords and clusters to existing pages and content
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|