started some designing

This commit is contained in:
z1glr
2025-01-03 23:10:30 +00:00
parent 3fb5311071
commit b392978c17
74 changed files with 6934 additions and 0 deletions

19
client/src/app/layout.tsx Normal file
View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app"
};
export default function RootLayout({
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className="antialiased">{children}</body>
</html>
);
}