Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 14:10:12 +00:00
2 changed files with 14 additions and 45 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
<html lang="en">
<body>
<ReactLenis root>
{children}
</ReactLenis>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -84,6 +84,10 @@ export default function LandingPage() {
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
buttons={[
{ text: "Book Now", href: "#contact" }
]}
buttonAnimation="slide-up"
features={[
{
id: "1", title: "Oil Changes & Fluid Services", tags: ["Maintenance", "Essential"],
@@ -241,4 +245,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}