diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e304a0..769b158 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,55 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional [Service] in [City] | Licensed & Insured", description: "Fast, reliable, and affordable [service] services in [city]. Licensed professionals available 24/7. Call for a free quote today!", keywords: "[service] in [city], professional [service], licensed [service], affordable [service], [service] near me, emergency [service]", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional [Service] Services - [City]", description: "Trusted local [service] company. Fast response, expert technicians, competitive pricing. Call now!", type: "website", siteName: "ProServices", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-foreman-auto-mechanic-workshop-using-touchpad-looking-camera_637285-9410.jpg", alt: "Professional service technician"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional [Service] in [City]", description: "Licensed, insured, and ready to help. Call for service today!", images: ["http://img.b2bpic.net/free-photo/happy-foreman-auto-mechanic-workshop-using-touchpad-looking-camera_637285-9410.jpg"], - }, -}; + title: "ProServices - Professional Service Solutions", description: "Trusted professional services with fast response times and guaranteed satisfaction."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}