9 Commits

Author SHA1 Message Date
1cbc0a9783 Merge version_3 into main
Merge version_3 into main
2026-03-04 00:31:10 +00:00
ba94972aee Update src/app/page.tsx 2026-03-04 00:31:06 +00:00
45a62a5f90 Update src/app/layout.tsx 2026-03-04 00:31:05 +00:00
e3ec5f39ad Merge version_2 into main
Merge version_2 into main
2026-03-03 23:29:01 +00:00
c1ddabc9a1 Update src/app/page.tsx 2026-03-03 23:28:57 +00:00
99ae3aa422 Update src/app/layout.tsx 2026-03-03 23:28:56 +00:00
94972f65ed Merge version_1 into main
Merge version_1 into main
2026-03-03 23:28:13 +00:00
9b5db4dda6 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:27:12 +00:00
d2fe4ce1f2 Merge version_1 into main
Merge version_1 into main
2026-03-03 23:25:49 +00:00
2 changed files with 13 additions and 49 deletions

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}