aboutsummaryrefslogtreecommitdiff
path: root/app/layout.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2023-07-14 11:42:42 -0400
committerAndrew Lee <alee14498@protonmail.com>2023-07-14 11:42:42 -0400
commit1a18c9a67bff181a0e69edbc8e5e9535d9ee791f (patch)
treefd51b331b5eb47af5b3e392bcb09289c153e2994 /app/layout.js
downloadalure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.tar.gz
alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.tar.bz2
alure-website-1a18c9a67bff181a0e69edbc8e5e9535d9ee791f.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>
+ )
+}