23 lines
702 B
TypeScript
23 lines
702 B
TypeScript
import PageMeta from "../components/common/PageMeta";
|
|
import ComponentCard from "../components/common/ComponentCard";
|
|
|
|
export default function Analytics() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Analytics - IGNY8" description="Performance analytics" />
|
|
|
|
<ComponentCard title="Coming Soon" desc="Performance analytics">
|
|
<div className="text-center py-8">
|
|
<p className="text-gray-600 dark:text-gray-400">
|
|
Analytics - Coming Soon
|
|
</p>
|
|
<p className="text-sm text-gray-500 dark:text-gray-400 mt-2">
|
|
Performance analytics and reporting for data-driven decisions
|
|
</p>
|
|
</div>
|
|
</ComponentCard>
|
|
</>
|
|
);
|
|
}
|
|
|