From 88a880896f541e56caaa5a97693763f015ef6362 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 21:05:19 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 43 ++++++++++++------------------------------- 1 file changed, 12 insertions(+), 31 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f5e785..bd69e1e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,28 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Quality Works of SWFL - Premium Tile Installation & Design", description: "Expert tile installation, design consultation, and maintenance services for residential and commercial projects in Southwest Florida. 2,500+ satisfied customers.", keywords: "tile installation, tile contractor, ceramic tiles, marble tiles, floor tiles, bathroom tiles, SWFL, Southwest Florida", metadataBase: new URL("https://www.qualityworksswfl.com"), - alternates: { - canonical: "https://www.qualityworksswfl.com"}, - openGraph: { - title: "Quality Works of SWFL - Premium Tile Services", description: "Transform your space with expert tile solutions. Free consultation available.", url: "https://www.qualityworksswfl.com", siteName: "Quality Works of SWFL", type: "website"}, - twitter: { - card: "summary_large_image", title: "Quality Works of SWFL - Tile Experts", description: "Premium tile installation & design services in Southwest Florida"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Quality Works of SWFL - Premium Tile Solutions", description: "Expert tile installation and design services for residential and commercial projects in Southwest Florida. Quality craftsmanship you can trust."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +