feat: add app shell with sidebar navigation, routing, and placeholder pages

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-16 14:41:59 +05:30
parent dc68577477
commit 2984545dde
10 changed files with 260 additions and 4 deletions

12
src/pages/campaigns.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { TopBar } from "@/components/layout/top-bar";
export const CampaignsPage = () => {
return (
<div className="flex flex-1 flex-col">
<TopBar title="Campaigns" />
<div className="flex flex-1 items-center justify-center p-8">
<p className="text-tertiary">Campaigns coming soon</p>
</div>
</div>
);
};