Merge version_2 into main #4
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,7 +48,8 @@ export default function HomePage() {
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "#contact"}}
|
||||
text: "Book Appointment", href: "#contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user