From f9920cfb76a72b890bbc6051cba55b6ffbeeacdb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 10:06:39 +0000 Subject: [PATCH] Switch to version 2: modified src/app/layout.tsx --- src/app/layout.tsx | 37 ++++++++++++++----------------------- 1 file changed, 14 insertions(+), 23 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a0cd7f1..8070da6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,14 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./styles/variables.css"; import "./styles/base.css"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Earl Boys Services", description: "Professional home services in Richmond, VA"}; + 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."}; export default function RootLayout({ children, @@ -17,20 +17,19 @@ export default function RootLayout({ }) { return ( - - - - {children} - + + {children}