8 Commits

Author SHA1 Message Date
45972f0d43 Merge version_3 into main
Merge version_3 into main
2026-03-07 12:15:33 +00:00
24a376ffd8 Update src/app/page.tsx 2026-03-07 12:15:28 +00:00
62d4cbb364 Merge version_2 into main
Merge version_2 into main
2026-03-07 12:13:17 +00:00
77205c6991 Update src/app/page.tsx 2026-03-07 12:13:11 +00:00
62c48efe80 Update src/app/layout.tsx 2026-03-07 12:13:11 +00:00
0866466d62 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:48:43 +00:00
8bfad37d80 Merge version_1 into main
Merge version_1 into main
2026-03-07 11:47:47 +00:00
af0f4ba4cf Merge version_1 into main
Merge version_1 into main
2026-03-07 11:46:00 +00:00
2 changed files with 12 additions and 62 deletions

View File

@@ -1,70 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "California Golden Detailers | Luxury Auto Detailing Los Angeles",
description: "Premium mobile auto detailing for exotic vehicles—Ferrari, Lamborghini, Rolls-Royce. Ceramic coating, paint correction, and luxury car care in Los Angeles.",
keywords: "luxury auto detailing, exotic car detailing, Ferrari detailing, Lamborghini detailing, ceramic coating, mobile detailing Los Angeles",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "California Golden Detailers - Luxury Auto Detailing",
description: "Experience premium mobile detailing for exotic and luxury vehicles. Expert care for Rolls-Royce, Ferrari, Lamborghini, and more.",
url: "https://californiagoldendetailers.com",
siteName: "California Golden Detailers",
images: [
{
url: "http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-black-car_181624-25346.jpg",
alt: "Luxury Ferrari professional detailing",
},
],
type: "website",
},
twitter: {
card: "summary_large_image",
title: "California Golden Detailers - Luxury Auto Care",
description: "Premium mobile detailing for exotic vehicles in Los Angeles",
images: ["http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-black-car_181624-25346.jpg"],
},
};
title: "California Golden Detailers | Luxury Auto Detailing", description: "Premium mobile detailing service for exotic and luxury vehicles including Ferrari, Lamborghini, Rolls-Royce, and Bugatti. Los Angeles-based with national recognition."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1432,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -48,7 +48,8 @@ export default function HomePage() {
{ name: "Contact", id: "#contact" },
]}
button={{
text: "Book Appointment", href: "#contact"}}
text: "Book Appointment Now", href: "#contact"
}}
/>
</div>
@@ -61,7 +62,7 @@ export default function HomePage() {
tagIcon={Sparkles}
background={{ variant: "glowing-orb" }}
buttons={[
{ text: "Book Appointment", href: "#contact" },
{ text: "Book Appointment Now", href: "#contact" },
{ text: "View Services", href: "/services" },
]}
imageSrc="http://img.b2bpic.net/free-photo/closeup-shot-exterior-details-modern-black-car_181624-25346.jpg?_wi=1"
@@ -99,7 +100,7 @@ export default function HomePage() {
{/* About/Metrics Section */}
<div id="about" data-section="about">
<AboutMetric
title="California Golden Detailers represents the pinnacle of automotive craftsmanship, specializing in the meticulous care of exotic and luxury vehicles. Our passion for perfection drives every detail."
title="Built on Excellence: California Golden Detailers represents the pinnacle of automotive craftsmanship, specializing in the meticulous care of exotic and luxury vehicles. Our passion for perfection drives every detail."
metrics={[
{
icon: Award,
@@ -270,4 +271,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}