Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 77205c6991 | |||
| 62c48efe80 | |||
| 0866466d62 | |||
| 8bfad37d80 | |||
| af0f4ba4cf |
@@ -1,70 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "California Golden Detailers | Luxury Auto Detailing Los Angeles",
|
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."};
|
||||||
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"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1432,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,8 @@ export default function HomePage() {
|
|||||||
{ name: "Contact", id: "#contact" },
|
{ name: "Contact", id: "#contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Book Appointment", href: "#contact"}}
|
text: "Book Appointment", href: "#contact"
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -99,7 +100,7 @@ export default function HomePage() {
|
|||||||
{/* About/Metrics Section */}
|
{/* About/Metrics Section */}
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<AboutMetric
|
<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={[
|
metrics={[
|
||||||
{
|
{
|
||||||
icon: Award,
|
icon: Award,
|
||||||
@@ -270,4 +271,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user