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}