aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/layout.tsx
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2023-11-14 15:52:47 -0800
committerPinapelz <yukais@pinapelz.com>2023-11-14 15:52:47 -0800
commita7701e6183956531a6930fac484acb52e22baf85 (patch)
tree10d83f72b2586d1a0b8b99213ca0fa19f8ac7ae3 /src/app/layout.tsx
Initial commit from Create Next App
Diffstat (limited to 'src/app/layout.tsx')
-rw-r--r--src/app/layout.tsx22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
new file mode 100644
index 0000000..40e027f
--- /dev/null
+++ b/src/app/layout.tsx
@@ -0,0 +1,22 @@
+import type { Metadata } from 'next'
+import { Inter } from 'next/font/google'
+import './globals.css'
+
+const inter = Inter({ subsets: ['latin'] })
+
+export const metadata: Metadata = {
+ title: 'Create Next App',
+ description: 'Generated by create next app',
+}
+
+export default function RootLayout({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return (
+ <html lang="en">
+ <body className={inter.className}>{children}</body>
+ </html>
+ )
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage