import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Aayan. | AI Engineer & Specialist", description: "Modern portfolio website showing dark theme architecture", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {/* Dark radial gradient background matching the image */}
{children}
); }