From 937fcba3d597fef4774c81628fa7f06c9fd1a399 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:24:52 +0000 Subject: [PATCH] Switch to version 3: modified src/app/layout.tsx --- src/app/layout.tsx | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8070da6..a0cd7f1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,14 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Earl Boys Services - Professional Home Services in Richmond VA", description: "Earl Boys Services offers professional home services including plumbing, electrical, painting, and general maintenance in Richmond, VA and surrounding areas."}; + title: "Earl Boys Services", description: "Professional home services in Richmond, VA"}; export default function RootLayout({ children, @@ -17,19 +17,20 @@ export default function RootLayout({ }) { return ( - - {children} + + + + {children} +