Initial commit

This commit is contained in:
2025-11-05 17:03:35 -07:00
commit 5ae6b8b45f
32 changed files with 2030 additions and 0 deletions

18
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { Lexend } from 'next/font/google'
import './globals.css'
const lexend = Lexend({
subsets: ['latin']
})
export default function RootLayout ({
children
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang='en'>
<body className={lexend.className}>{children}</body>
</html>
)
}