Merge version_2 into main #4
@@ -1,57 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } 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 openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Professional Car Detailing Services | AutoShine Detailing", description: "Book premium car detailing services online. Expert exterior & interior detailing, ceramic coating, and fleet services with 24/7 availability.", keywords: "car detailing, auto detailing, ceramic coating, car wash, professional detailing, interior cleaning", metadataBase: new URL("https://autoshinedetailing.com"),
|
||||
alternates: {
|
||||
canonical: "https://autoshinedetailing.com"},
|
||||
openGraph: {
|
||||
title: "Premium Car Detailing Services", description: "Transform your vehicle with professional detailing. Book your appointment today.", url: "https://autoshinedetailing.com", siteName: "AutoShine Detailing", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-car-care-washing_23-2149172895.jpg", alt: "Professional car detailing"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Professional Car Detailing Services", description: "Expert car detailing with online booking available 24/7", images: ["http://img.b2bpic.net/free-photo/close-up-car-care-washing_23-2149172895.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "AutoShine Detailing - Professional Car Detailing Services", description: "Premium car detailing services that transform your vehicle. Book your appointment today."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -113,18 +113,18 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
plans={[
|
||||
{
|
||||
id: "basic", badge: "Popular", badgeIcon: Sparkles,
|
||||
price: "$99", subtitle: "Basic Exterior Detailing", features: [
|
||||
"Professional wash", "Clay bar treatment", "Hand wax application", "Tire shine", "Air freshener included"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "premium", badge: "Best Value", badgeIcon: Star,
|
||||
price: "$199", subtitle: "Complete Interior & Exterior", features: [
|
||||
"Everything in Basic", "Deep interior vacuum", "Upholstery cleaning", "Leather conditioning", "Dashboard polish", "Window treatment"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "basic", badge: "Popular", badgeIcon: Sparkles,
|
||||
price: "$99", subtitle: "Basic Exterior Detailing", features: [
|
||||
"Professional wash", "Clay bar treatment", "Hand wax application", "Tire shine", "Air freshener included"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "elite", badge: "Elite Choice", badgeIcon: Trophy,
|
||||
price: "$349", subtitle: "Ultimate Ceramic Protection", features: [
|
||||
|
||||
Reference in New Issue
Block a user