From 1dd78b8e1be98a409a86c1d72ff2453ee9085db0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 20:43:58 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3909b14..b924b3c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,24 @@ 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: 'Luxury Dental Care | Elite Smile Studio', description: 'Experience unparalleled luxury dental care. Our elite practice offers bespoke treatments, advanced technology, and serene comfort for your perfect, radiant smile.', }; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +32,7 @@ export default function RootLayout({ return ( - + {children}