From 30c5eb5776fcc60f023ad6aa51153cb375c87930 Mon Sep 17 00:00:00 2001 From: trisusilo48 Date: Wed, 9 Oct 2024 09:34:28 +0700 Subject: Initial commit from Create Next App --- app/layout.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 app/layout.tsx (limited to 'app/layout.tsx') diff --git a/app/layout.tsx b/app/layout.tsx new file mode 100644 index 0000000..a36cde0 --- /dev/null +++ b/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.2.3