diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 495710c..0169099 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Expert Local Services - Professional & Reliable", description: "Trusted local service provider offering home maintenance, cleaning, landscaping, and handyman services. Licensed, insured professionals serving your community with excellence.", keywords: "local services, home repair, maintenance, cleaning, landscaping, handyman, professional, trusted", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Expert Local Services - Professional & Reliable", description: "Trusted local service provider offering comprehensive solutions for your home and business needs.", type: "website", siteName: "Local Pros", images: [ - { - url: "http://img.b2bpic.net/free-photo/members-labor-union-working-together_52683-147376.jpg", alt: "professional service team working together outdoor"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Expert Local Services - Professional & Reliable", description: "Trusted local service provider offering comprehensive solutions for your home and business needs.", images: ["http://img.b2bpic.net/free-photo/members-labor-union-working-together_52683-147376.jpg"], - }, -}; + title: "Local Pros | Expert Local Services", description: "Professional, reliable solutions for your home and business needs. Serving your community with integrity and excellence."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -