tried to rebuild the frontend
This commit is contained in:
parent
091a37cb57
commit
54ead8579c
15 changed files with 918 additions and 0 deletions
16
app/layout.tsx
Normal file
16
app/layout.tsx
Normal 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>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue