From 2891ad3b0f32a2fd04d2cb9319aae33f1a2802f2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:13:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b705367..2907f06 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,16 @@ import type { Metadata } from "next"; -import { Inter_Tight } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Open_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +const openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], }); export const metadata: Metadata = { @@ -29,7 +33,9 @@ export default function RootLayout({ return ( - + {children}