From 1a18c9a67bff181a0e69edbc8e5e9535d9ee791f Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 14 Jul 2023 11:42:42 -0400 Subject: Initial commit from Create Next App --- app/layout.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/layout.js (limited to 'app/layout.js') diff --git a/app/layout.js b/app/layout.js new file mode 100644 index 0000000..c93f806 --- /dev/null +++ b/app/layout.js @@ -0,0 +1,17 @@ +import './globals.css' +import { Inter } from 'next/font/google' + +const inter = Inter({ subsets: ['latin'] }) + +export const metadata = { + title: 'Create Next App', + description: 'Generated by create next app', +} + +export default function RootLayout({ children }) { + return ( + + {children} + + ) +} -- cgit v1.2.3