Initial commit

This commit is contained in:
ASOwnerYT
2024-11-27 15:42:04 +13:00
commit c8f05290e8
23 changed files with 5421 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import localFont from "next/font/local";
import "./globals.css";
import Navbar from "./components/Navbar"
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
variable: "--font-geist-sans",
weight: "100 900",
});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff",
variable: "--font-geist-mono",
weight: "100 900",
});
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
<Navbar />
{children}
</body>
</html>
);
}