diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ece1763..6908142 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import { ReactLenis } from "lenis/react"; 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); export const metadata: Metadata = { - title: "Buckley's Auto Care - Professional Vehicle Maintenance & Repair", description: "Expert automotive repair and maintenance services with 20+ years of experience. ASE certified technicians providing oil changes, tire service, brake repair, and diagnostics.", keywords: "auto repair, car maintenance, mechanic, oil change, tire service, brake repair, vehicle diagnostics", metadataBase: new URL("https://buckleysautocare.com"), - alternates: { - canonical: "https://buckleysautocare.com" - }, - openGraph: { - title: "Buckley's Auto Care - Professional Vehicle Maintenance & Repair", description: "Expert automotive repair and maintenance services with 20+ years of experience. ASE certified technicians providing quality service you can trust.", url: "https://buckleysautocare.com", siteName: "Buckley's Auto Care", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Buckley's Auto Care - Professional Vehicle Maintenance & Repair", description: "Expert automotive repair and maintenance services with 20+ years of experience." - }, - robots: { - index: true, - follow: true - } -}; + title: "Buckley's Auto Care | Professional Automotive Services", description: "Expert auto care and maintenance services with over 20 years of experience. Professional mechanics serving the community with integrity."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - + + + {children} - + +