5 Commits

Author SHA1 Message Date
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 7 additions and 43 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"