feat: implement dashboard layout with sidebar navigation, finance page, and supporting UI architecture

This commit is contained in:
Poyraz Avsever
2026-05-08 14:12:26 +03:00
parent e0a2dace49
commit a21c64172e
7 changed files with 921 additions and 422 deletions
+3 -11
View File
@@ -2,7 +2,6 @@ import type { Metadata } from "next";
import "./globals.css";
import { Geist } from "next/font/google";
import { cn } from "@/lib/utils";
import { ThemeProvider } from "@/components/theme-provider";
import { Toaster } from "react-hot-toast";
const geist = Geist({ subsets: ["latin"], variable: "--font-sans" });
@@ -20,19 +19,12 @@ export default function RootLayout({
return (
<html
lang="tr"
className={cn("font-sans", geist.variable)}
className={cn("font-sans dark", geist.variable)}
suppressHydrationWarning
>
<body>
<ThemeProvider
attribute="class"
defaultTheme="dark"
enableSystem
disableTransitionOnChange
>
{children}
<Toaster position="top-right" />
</ThemeProvider>
{children}
<Toaster position="top-right" />
</body>
</html>
);