From b87e851b5aa958bd40be03bd4e57e897735cc368 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 12:17:57 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d36e8bc..979950b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,17 +5,9 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Libre_Baskerville } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "TechCore - Enterprise Software Solutions", @@ -52,6 +44,16 @@ export const metadata: Metadata = { }, }; +const libreBaskerville = Libre_Baskerville({ + variable: "--font-libre-baskerville", + subsets: ["latin"], + weight: ["400", "700"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -60,9 +62,7 @@ export default function RootLayout({ return ( - + {children}