From 4d9b1d12635b798b4a11cab5fde9408ac2bcc7f5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 04:00:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bb7d94b..d15f78f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,17 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./globals.css"; import "./styles/variables.css"; import "./styles/base.css"; +import { Inter } from "next/font/google"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/Tag"; -const inter = Inter({ subsets: ["latin"] }); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "American Screen Hero - Pool Cage & Screen Repair Sarasota", description: "Professional pool cage and screen repair services in Sarasota, Lakewood Ranch, and Bradenton. Fast, reliable rescreening and repairs."}; + title: "American Screen Hero - Pool Cage & Screen Repair in Sarasota", description: + "Professional pool cage and screen repair services in Sarasota, Lakewood Ranch, and Bradenton. Fast, reliable screen repair and rescreening solutions."}; export default function RootLayout({ children, @@ -16,24 +20,18 @@ export default function RootLayout({ }) { return ( - - {children} + + + + {children} +