From d7f614d2af2b1c51f65a10da59e47d3a949ff670 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:49:01 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a3d0f02..ad48d2e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,10 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); export const metadata: Metadata = { title: "Belle Precisions - Permanent Makeup Hot Springs", description: "Professional permanent eyeliner enhancement in Hot Springs, AR. 5-star rated, women-owned clinic specializing in precision beauty services."}; @@ -14,7 +16,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}