diff --git a/app/globals.css b/app/globals.css index d45e010..1c7ceb5 100644 --- a/app/globals.css +++ b/app/globals.css @@ -53,6 +53,16 @@ body { --sidebar-border: 220 13% 91%; --sidebar-ring: 217.2 91.2% 59.8%; } + .dark { + --sidebar-background: 240 5.9% 10%; + --sidebar-foreground: 240 4.8% 95.9%; + --sidebar-primary: 224.3 76.3% 48%; + --sidebar-primary-foreground: 0 0% 100%; + --sidebar-accent: 240 3.7% 15.9%; + --sidebar-accent-foreground: 240 4.8% 95.9%; + --sidebar-border: 240 3.7% 15.9%; + --sidebar-ring: 217.2 91.2% 59.8%; + } } @layer base { diff --git a/app/layout.tsx b/app/layout.tsx index 4a0c14b..837ae90 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,6 +1,8 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; +import { TooltipProvider } from "@/components/ui/tooltip"; +import { QuickTopUI } from "@/components/QuickTopUI"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -13,8 +15,8 @@ const geistMono = Geist_Mono({ }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app" + title: "OCbwoy3-Chan-blox", + description: "roblox meets next.js i think" }; export default function RootLayout({ @@ -27,7 +29,10 @@ export default function RootLayout({
- {children} +