diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5783230..6f6c500 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,11 @@ import type { Metadata } from "next"; -import { Space_Grotesk } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const spaceGrotesk = Space_Grotesk({ - variable: "--font-space-grotesk", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -36,7 +36,7 @@ export default function RootLayout({ {children} @@ -1262,4 +1262,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}