tried to rebuild the frontend

This commit is contained in:
Sage The DM 2024-09-18 09:47:23 +02:00
parent 091a37cb57
commit 54ead8579c
15 changed files with 918 additions and 0 deletions

16
app/layout.tsx Normal file
View file

@ -0,0 +1,16 @@
export const metadata = {
title: 'Next.js',
description: 'Generated by Next.js',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}