23 lines
701 B
TypeScript
23 lines
701 B
TypeScript
import PageMeta from "../../components/common/PageMeta";
|
|
import ComponentCard from "../../components/common/ComponentCard";
|
|
|
|
export default function Strategies() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Strategies - IGNY8" description="Content strategies" />
|
|
|
|
<ComponentCard title="Coming Soon" desc="Content strategies">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Content Strategies - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Plan and manage content strategies and approaches
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|