From 97b8ac5c382eb28ecc3e0977fa1629cc79dcd9c9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 20:23:54 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6c0bfad..4dffab8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,19 @@ 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<{ @@ -28,9 +27,7 @@ export default function RootLayout({ return ( - + {children}