diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 533c571..68e54a5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "337 Painting & Cleaning | Professional Home Services", description: "Expert painting and cleaning services for residential and commercial properties. Professional team, quality results, transparent pricing. Get your free quote today.", keywords: "painting services, house cleaning, professional painters, interior painting, exterior painting, pressure washing, home maintenance", openGraph: { - title: "337 Painting & Cleaning | Transform Your Home", description: "Professional painting and cleaning services with 15+ years of experience. Over 500 satisfied clients.", siteName: "337 Painting & Cleaning", type: "website"}, - twitter: { - card: "summary_large_image", title: "337 Painting & Cleaning Services", description: "Expert home painting and cleaning solutions for residential and commercial properties."}, -}; + title: "337 Painting & Cleaning", description: "Professional painting and cleaning services for residential and commercial properties."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +