diff options
| author | Yuval Adam <_@yuv.al> | 2024-09-23 09:18:05 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-09-23 09:18:05 +0200 |
| commit | befc9ba3e4a9b24cdd0397663c04c98688d98d9b (patch) | |
| tree | d000b369d8deef80454e65cead8f3401d2a9615f /geshem/app/layout.tsx | |
| parent | 257c970be15e85e9f1bb200aadc82a9b98c57434 (diff) | |
Initial nextjs project generation
Diffstat (limited to 'geshem/app/layout.tsx')
| -rw-r--r-- | geshem/app/layout.tsx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/geshem/app/layout.tsx b/geshem/app/layout.tsx new file mode 100644 index 0000000..a36cde0 --- /dev/null +++ b/geshem/app/layout.tsx @@ -0,0 +1,35 @@ +import type { Metadata } from "next"; +import localFont from "next/font/local"; +import "./globals.css"; + +const geistSans = localFont({ + src: "./fonts/GeistVF.woff", + variable: "--font-geist-sans", + weight: "100 900", +}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff", + variable: "--font-geist-mono", + weight: "100 900", +}); + +export const metadata: Metadata = { + title: "Create Next App", + description: "Generated by create next app", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + <html lang="en"> + <body + className={`${geistSans.variable} ${geistMono.variable} antialiased`} + > + {children} + </body> + </html> + ); +} |
