From 4addbe1ec59d622c558028cf92fb3e8eb458f2a3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 05:48:16 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e040c30..a321fa9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Roboto } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children} @@ -1408,4 +1407,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}