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}