import { Button } from '@/components/ui/button' import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from '@/components/ui/card' import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs' import { Header } from '@/components/layout/header' import { Main } from '@/components/layout/main' import { TopNav } from '@/components/layout/top-nav' import { ProfileDropdown } from '@/components/profile-dropdown' import { Search } from '@/components/search' import { ThemeSwitch } from '@/components/theme-switch' import { Overview } from './components/overview' import { RecentSales } from './components/recent-sales' export default function Dashboard() { return ( <> {/* ===== Top Heading ===== */}
{/* ===== Main ===== */}

Dashboard

Overview Analytics Reports Notifications
Total Revenue
$45,231.89

+20.1% from last month

Subscriptions
+2350

+180.1% from last month

Sales
+12,234

+19% from last month

Active Now
+573

+201 since last hour

Overview Recent Sales You made 265 sales this month.
) } const topNav = [ { title: 'Overview', href: 'dashboard/overview', isActive: true, disabled: false, }, { title: 'Customers', href: 'dashboard/customers', isActive: false, disabled: true, }, { title: 'Products', href: 'dashboard/products', isActive: false, disabled: true, }, { title: 'Settings', href: 'dashboard/settings', isActive: false, disabled: true, }, ]