diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f8f6366..2e7cc66 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Prata } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const prata = Prata({ - variable: "--font-prata", subsets: ["latin"], - weight: ["400"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -39,7 +38,7 @@ export default function RootLayout({ {children}