make a first page

This commit is contained in:
2025-02-17 15:32:46 +07:00
parent fcb655895a
commit 3e972dc59d
8 changed files with 2932 additions and 133 deletions

View File

@@ -1,17 +1,10 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import { Roboto_Mono } from 'next/font/google'
import "./globals.css";
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",
});
const roboto_mono = Roboto_Mono({
subsets: ['latin']
})
export const metadata: Metadata = {
title: "Create Next App",
@@ -26,7 +19,7 @@ export default function RootLayout({
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
className={`bg-background ${roboto_mono.className} antialiased text-white`}
>
{children}
</body>