From 4c18065cac76ef2dc30811a86bc74bfe180728e4 Mon Sep 17 00:00:00 2001 From: development Date: Sat, 17 Jan 2026 17:45:45 +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 02c7a95..9b6c78e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,11 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { @@ -37,7 +36,7 @@ export default function RootLayout({ {children} @@ -1263,4 +1262,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}