diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65d3557..b7c3edb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,43 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Camacho Painting LLC | Professional Painting Services", description: "Expert residential and commercial painting services. 15+ years experience, 1000+ satisfied customers. Free estimates. Transform your space today!", keywords: "painting services, interior painting, exterior painting, commercial painting, house painting, professional painters", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Camacho Painting LLC | Professional Painting Services", description: "Expert residential and commercial painting services. 15+ years experience, 1000+ satisfied customers. Free estimates.", type: "website", siteName: "Camacho Painting LLC"}, - twitter: { - card: "summary_large_image", title: "Camacho Painting LLC | Professional Painting Services", description: "Expert painting services for homes and businesses. Get your free estimate today!"}, -}; + title: "Camacho Painting LLC | Professional Painting Services", description: "Expert painting services for residential and commercial projects. Licensed, insured, and certified by industry standards."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}