Initial commit

This commit is contained in:
2026-07-18 02:10:34 +00:00
commit 21ae003ded
54 changed files with 3269 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
import Providers from "@/components/Providers";
import { Roboto } from "next/font/google";
import type { Metadata } from "next";
import "./globals.css";
const roboto = Roboto({
subsets: ["latin"],
weight: ["400", "500", "700"],
variable: "--font-roboto",
});
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"
className={`${roboto.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<Providers>
{children}
</Providers>
</body>
</html>
);
}