import type { Metadata } from "next"; import { Inter, JetBrains_Mono } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; import { ThemeProvider } from "@/components/theme-provider"; import PageTransition from "@/components/PageTransition"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono" }); export const metadata: Metadata = { title: "BidWraith | AI Auction Intelligence", description: "BidWraith is the smartest way to track global auction sites. Get real-time alerts and beat the competition.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {/* Fun tech subtle background grid */}
{children}
); }