From eb11700be906347fc7e527cc7dbc12edba7b790c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 7 May 2026 12:56:42 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef6cc70..bd4b3a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,20 +6,18 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Roboto } 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 SaaS | Build High-Converting Landing Pages Fast', description: 'Accelerate your SaaS growth with Webild\'s high-performance, conversion-optimized landing page templates. Designed for developers and founders.' }; +const roboto = Roboto({ + variable: "--font-roboto", + subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -28,9 +26,7 @@ export default function RootLayout({ return ( - + {children}