From 78a52ceadb0b3df356ae4e613d5f723fa3aeb9da Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 09:39:35 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da62c62..2484303 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,17 +7,19 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Elite Horizons | Bespoke Luxury Travel Experiences', description: 'Discover curated, world-class travel experiences tailored to your desires. From private villas to exclusive expeditions, redefine luxury with Elite Horizons.' }; -const inter = Inter({ - variable: "--font-inter", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -29,7 +31,7 @@ export default function RootLayout({ return ( - + {children}