From c340ef61127d3e117aef50de4237a3f85aee247d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 02:18:56 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 27 +++++++++++---------------- 1 file changed, 11 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 910c8cc..954ce57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,22 +5,10 @@ import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; 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"], -}); -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "BrandLift - Launch Your Business Online in 48 Hours", @@ -55,6 +43,15 @@ export const metadata: Metadata = { }, }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -63,9 +60,7 @@ export default function RootLayout({ return ( - + {children}