diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0781a95..f09f673 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,16 +1,11 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { Header } from "@/components/header"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const inter = Inter({ subsets: ["latin"], + variable: "--font-sans", }); export const metadata: Metadata = { @@ -27,7 +22,7 @@ export default function RootLayout({ return (