- import Sidebar from "@/components/Sidebar";
- import Header from "@/components/Header";
- import DashboardContent from "@/components/DashboardContent";
- export default function Home() {
- return (
- <div className="flex h-screen w-full bg-background text-on-background font-sans antialiased overflow-hidden selection:bg-primary selection:text-on-primary">
- <Sidebar />
- <main className="flex-1 flex flex-col h-screen overflow-hidden relative bg-background">
- <Header />
- <DashboardContent />
- </main>
- </div>
- );
- }
|