From 816ad9958c3083d487378dd2c5ea2b26063e08a4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 22:08:46 +0000 Subject: [PATCH 1/3] 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 fa263bd..c15cdc5 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: 'Archistudio: Minimalist Architecture & Design', description: 'Archistudio specializes in minimalist architecture, crafting elegant, functional, and sustainable spaces that redefine modern living. Discover our portfolio.', }; +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}