diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 891ebd2..d005ebc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Angelo's Mobile Detailing | Professional Car Detailing Service", description: "Professional mobile car detailing at your home or workplace. 5-star rated service for cars, trucks, SUVs, and specialty vehicles. Call (936) 499-1064 for a free quote.", keywords: "mobile car detailing, truck detailing, car interior detailing, ceramic coating, professional car wash, local detailing service", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Angelo's Mobile Detailing | Premium Car Care Comes To You", description: "Professional mobile detailing service. 5-star rated. Free quotes available. Call (936) 499-1064.", url: "https://angelos-mobile-detailing.com", siteName: "Angelo's Mobile Detailing", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ad9QaSI26EHQxX7jWaZfy0EY9O/uploaded-1772931341591-ns2wsgge.png", alt: "Angelo's Mobile Detailing Professional Service"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Angelo's Mobile Detailing | Professional Car Care", description: "Mobile car detailing service with 5-star ratings. Professional interior and exterior detailing.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ad9QaSI26EHQxX7jWaZfy0EY9O/uploaded-1772931341591-ns2wsgge.png"], - }, -}; + title: "Angelo's Mobile Detailing", description: "Professional Mobile Car Detailing That Comes To You. Premium interior and exterior detailing for cars, trucks, and SUVs — done at your home or workplace."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}