import type { Metadata } from "next"; import { Geist, Geist_Mono, Space_Grotesk } from "next/font/google"; import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); const spaceGroteskSans = Space_Grotesk({ variable: "--font-spacegrotesk-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Ameya Shenoy", description: "Engineering lead with 8+ years of expertise in designing Scalable System Architecture, Leading high performing teams, and delivering AI driven solutions while also maintaining the role of an Individual Contributor", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children} ); }