From e47c0d45bf9a591723881423339bd18fa423ffae Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 20:29:23 +0000 Subject: [PATCH] Switch to version 2: modified src/app/layout.tsx --- src/app/layout.tsx | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4dffab8..6c0bfad 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,19 +6,20 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Montserrat } 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: 'WebOrgin | Premium Digital Agency & Web Development Services', description: 'WebOrgin delivers high-performance web solutions and digital strategies tailored to scale your business. Elevate your online presence with our expert team.' }; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +28,9 @@ export default function RootLayout({ return ( - + {children}