From befc9ba3e4a9b24cdd0397663c04c98688d98d9b Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 23 Sep 2024 09:18:05 +0200 Subject: Initial nextjs project generation --- geshem/app/layout.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 geshem/app/layout.tsx (limited to 'geshem/app/layout.tsx') 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 ( + + + {children} + + + ); +} -- cgit v1.3.1