|
|
|
@ -1,14 +1,9 @@ |
|
|
|
import type { Metadata } from "next"; |
|
|
|
import type { Metadata } from "next"; |
|
|
|
import { Geist, Geist_Mono } from "next/font/google"; |
|
|
|
import { Inter } from "next/font/google"; |
|
|
|
import "./globals.css"; |
|
|
|
import "./globals.css"; |
|
|
|
|
|
|
|
|
|
|
|
const geistSans = Geist({ |
|
|
|
const inter = Inter({ |
|
|
|
variable: "--font-geist-sans", |
|
|
|
variable: "--font-inter", |
|
|
|
subsets: ["latin"], |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const geistMono = Geist_Mono({ |
|
|
|
|
|
|
|
variable: "--font-geist-mono", |
|
|
|
|
|
|
|
subsets: ["latin"], |
|
|
|
subsets: ["latin"], |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
@ -25,7 +20,7 @@ export default function RootLayout({ |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<html lang="en"> |
|
|
|
<html lang="en"> |
|
|
|
<body |
|
|
|
<body |
|
|
|
className={`${geistSans.variable} ${geistMono.variable} antialiased`} |
|
|
|
className={`${inter.variable} antialiased`} |
|
|
|
> |
|
|
|
> |
|
|
|
{children} |
|
|
|
{children} |
|
|
|
</body> |
|
|
|
</body> |
|
|
|
|