Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1cbc0a9783 | |||
| ba94972aee | |||
| 45a62a5f90 | |||
| e3ec5f39ad | |||
| c1ddabc9a1 | |||
| 99ae3aa422 | |||
| 94972f65ed | |||
| 9b5db4dda6 | |||
| d2fe4ce1f2 |
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } 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 poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Austin's Premium Detailing | Professional Vehicle Detailing", description: "Premium automotive detailing services. Expert paint correction, ceramic coating, and interior detailing for luxury and performance vehicles.", keywords: "car detailing, vehicle detailing, paint correction, ceramic coating, auto detailing, car wash, professional detailing", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Austin's Premium Detailing", description: "Transform your vehicle with professional detailing excellence.", url: "https://austindetailing.com", siteName: "Austin's Premium Detailing", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg", alt: "Premium vehicle detailing showcase"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Austin's Premium Detailing", description: "Professional vehicle detailing services", images: ["http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg"],
|
||||
},
|
||||
};
|
||||
title: "Austin's Premium Detailing", description: "Professional vehicle detailing services"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -52,7 +52,7 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg"
|
||||
imageAlt="Premium vehicle detailing showcase"
|
||||
buttons={[
|
||||
{ text: "Book Your Appointment", href: "contact" },
|
||||
{ text: "Book Free Consultation", href: "contact" },
|
||||
{ text: "View Our Services", href: "services" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -77,16 +77,16 @@ export default function LandingPage() {
|
||||
<FeatureBento
|
||||
features={[
|
||||
{
|
||||
title: "Paint Correction & Polishing", description: "Restore your vehicle's shine and remove imperfections with professional paint correction techniques", bentoComponent: "animated-bar-chart"
|
||||
title: "Paint Correction & Polishing", description: "Restore your vehicle's shine and remove imperfections with professional paint correction techniques. Starting at $299", bentoComponent: "animated-bar-chart"
|
||||
},
|
||||
{
|
||||
title: "Ceramic Coating Application", description: "Long-lasting protection that keeps your vehicle looking new and shields against environmental damage", bentoComponent: "globe"
|
||||
title: "Ceramic Coating Application", description: "Long-lasting protection that keeps your vehicle looking new and shields against environmental damage. Starting at $599", bentoComponent: "globe"
|
||||
},
|
||||
{
|
||||
title: "Full Interior Detailing", description: "Deep cleaning of every surface, from upholstery to trim, for a pristine interior environment", bentoComponent: "line-chart"
|
||||
title: "Full Interior Detailing", description: "Deep cleaning of every surface, from upholstery to trim, for a pristine interior environment. Starting at $399", bentoComponent: "line-chart"
|
||||
},
|
||||
{
|
||||
title: "Exterior Deep Clean", description: "Comprehensive wash and treatment that removes dirt, grime, and contaminants completely", bentoComponent: "map"
|
||||
title: "Exterior Deep Clean", description: "Comprehensive wash and treatment that removes dirt, grime, and contaminants completely. Starting at $199", bentoComponent: "map"
|
||||
}
|
||||
]}
|
||||
title="Our Premium Services"
|
||||
@@ -236,4 +236,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user