From 90dd64164fc6010668b6c9aca8de8bd820eca47b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 21:07:22 +0000 Subject: [PATCH 1/4] 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 024aee8..5374f6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,22 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { DM_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: 'Opulent Journeys | Bespoke Luxury Travel Agency', description: 'Discover unparalleled luxury travel experiences with Opulent Journeys. We craft bespoke itineraries to the world\'s most exclusive destinations. Your dream escape awaits.', }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +30,7 @@ export default function RootLayout({ return ( - + {children}