import type { Metadata } from "next"; import { Inter, JetBrains_Mono } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono" }); export const metadata: Metadata = { title: "BidWraith | The AI Auction Sniper That Never Sleeps", description: "BidWraith continuously watches global auction sites, finds under-priced deals, and sends real-time alerts. Catch every deal before anyone else.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {/* Ambient background particles/grid layer could go here */}
{children}
); }