24 lines
821 B
TypeScript
24 lines
821 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
import PageHeader from "../../components/common/PageHeader";
|
|
|
|
export default function Mapping() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Content Mapping - IGNY8" description="Keyword to content mapping" />
|
|
<PageHeader title="Content Mapping" />
|
|
<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>
|
|
</>
|
|
);
|
|
}
|
|
|