Finished sidebar

This commit is contained in:
2025-08-16 23:39:11 +02:00
parent 1921efc76a
commit c79d06f272
35 changed files with 1307 additions and 9 deletions

View File

@@ -1,11 +1,13 @@
import { ReactNode } from "react"
import "./globals.css"
import { Toaster } from "@/components/ui/sonner"
export default function RootLayout({ children }: Readonly<{ children: ReactNode }>) {
return (
<html lang="en">
<body className="antialiased">
<html lang="en" suppressHydrationWarning>
<body className="antialiased dark">
{children}
<Toaster />
</body>
</html>
)