Pre luanch plan phase 1 complete

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-05 03:40:39 +00:00
parent 1f2e734ea2
commit e93ea77c2b
60 changed files with 492 additions and 5215 deletions

View File

@@ -382,29 +382,29 @@ export default function ContentCalendar() {
if (!activeSite) {
return (
<div className="p-6">
<>
<PageMeta title="Content Calendar" description="View and manage scheduled content" />
<div className="flex flex-col items-center justify-center h-64 gap-4">
<CalendarIcon className="w-12 h-12 text-gray-400" />
<p className="text-gray-600 dark:text-gray-400">Please select a site from the header to view the content calendar</p>
</div>
</div>
</>
);
}
if (loading) {
return (
<div className="p-6">
<>
<PageMeta title="Content Calendar" description="View and manage scheduled content" />
<div className="flex items-center justify-center h-64">
<div className="text-gray-500">Loading calendar...</div>
</div>
</div>
</>
);
}
return (
<div className="p-6">
<>
<PageMeta title="Content Calendar" description="View and manage scheduled content" />
<PageHeader
@@ -803,6 +803,6 @@ export default function ContentCalendar() {
</ComponentCard>
</div>
</div>
</div>
</>
);
}