2025-05-31 18:30:09 +00:00
import type { Metadata } from "next" ;
2025-06-04 15:34:10 +00:00
import { Geist , Geist_Mono , Space_Grotesk } from "next/font/google" ;
2025-05-31 18:30:09 +00:00
import "./globals.css" ;
const geistSans = Geist ( {
variable : "--font-geist-sans" ,
subsets : [ "latin" ] ,
} ) ;
const geistMono = Geist_Mono ( {
variable : "--font-geist-mono" ,
subsets : [ "latin" ] ,
} ) ;
2025-06-04 15:34:10 +00:00
const spaceGroteskSans = Space_Grotesk ( {
variable : "--font-spacegrotesk-sans" ,
subsets : [ "latin" ] ,
} ) ;
2025-05-31 18:30:09 +00:00
export const metadata : Metadata = {
2025-06-04 15:34:10 +00:00
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" ,
2025-05-31 18:30:09 +00:00
} ;
export default function RootLayout ( {
children ,
} : Readonly < {
children : React.ReactNode ;
} > ) {
return (
< html lang = "en" >
< body
2025-06-04 15:34:10 +00:00
className = { ` ${ geistSans . variable } ${ geistMono . variable } ${ spaceGroteskSans . variable } antialiased ` }
2025-05-31 18:30:09 +00:00
>
{ children }
< / body >
< / html >
) ;
}