aboutsummaryrefslogtreecommitdiff
path: root/app/layout.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-10-02 14:40:26 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-10-02 14:40:26 -0400
commit95280d67a415b31d99ac7e0ebe35c8440847fd90 (patch)
tree31195292013b2cd717881837204a304ab2def9f2 /app/layout.js
downloadminepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.tar.gz
minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.tar.bz2
minepot-bnbmc-95280d67a415b31d99ac7e0ebe35c8440847fd90.zip
Initial commit from Create Next App
Diffstat (limited to 'app/layout.js')
-rw-r--r--app/layout.js17
1 files changed, 17 insertions, 0 deletions
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 (
+ <html lang="en">
+ <body className={inter.className}>{children}</body>
+ </html>
+ )
+}