From e94240c6448f79d7cb1de5b3841fdfc1e02277b9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 10:58:53 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 903ca6a..120824e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,17 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Open_Sans } 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: 'Webild Agency | High-Impact Digital Design & Development', description: 'Transform your brand with Webild. We craft high-performance websites and digital experiences tailored to scale your business and captivate your audience.' }; +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +25,7 @@ export default function RootLayout({ return ( - + {children}