Update src/app/pricing/page.tsx
This commit is contained in:
@@ -3,18 +3,10 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||||
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
|
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
|
||||||
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||||
import Link from "next/link";
|
|
||||||
import { DollarSign } from "lucide-react";
|
import { DollarSign } from "lucide-react";
|
||||||
|
|
||||||
const navItems = [
|
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "Services", id: "/services" },
|
|
||||||
{ name: "Pricing", id: "/pricing" },
|
|
||||||
{ name: "Gallery", id: "/gallery" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
];
|
|
||||||
|
|
||||||
export default function PricingPage() {
|
export default function PricingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
@@ -23,121 +15,80 @@ export default function PricingPage() {
|
|||||||
borderRadius="rounded"
|
borderRadius="rounded"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="fluid"
|
background="circleGradient"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="gradient-bordered"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
|
{/* Navbar */}
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={navItems}
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Pricing", id: "/pricing" },
|
||||||
|
{ name: "Gallery", id: "/gallery" },
|
||||||
|
{ name: "Contact", id: "#contact" },
|
||||||
|
]}
|
||||||
brandName="Elite Auto Detailing"
|
brandName="Elite Auto Detailing"
|
||||||
bottomLeftText="Professional Auto Detailing"
|
bottomLeftText="Professional Auto Detailing"
|
||||||
bottomRightText="(###) ###-#### or text us"
|
bottomRightText="(###) ###-#### or text us"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Pricing Plans */}
|
||||||
<div id="pricing" data-section="pricing">
|
<div id="pricing" data-section="pricing">
|
||||||
<PricingCardNine
|
<PricingCardNine
|
||||||
title="Transparent Pricing for Every Budget"
|
title="Our Pricing Packages"
|
||||||
description="Choose the package that fits your needs. Final pricing depends on vehicle size and condition. All packages include satisfaction guarantee and professional results."
|
description="Transparent, competitive pricing for every budget. Choose the package that suits your vehicle's needs."
|
||||||
tag="Pricing & Packages"
|
tag="Pricing & Packages"
|
||||||
tagIcon={DollarSign}
|
tagIcon={DollarSign}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "basic",
|
id: "basic", title: "Basic Clean", price: "Starting at $89", period: "per vehicle", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193171.jpg?_wi=2", imageAlt: "Basic Clean package", button: { text: "Book Now", href: "#contact" },
|
||||||
title: "Basic Clean",
|
features: ["Exterior wash and dry", "Tire shine", "Window cleaning", "Quick vacuum interior"],
|
||||||
price: "Starting at $89",
|
|
||||||
period: "per vehicle",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193171.jpg?_wi=2",
|
|
||||||
imageAlt: "Basic Clean package",
|
|
||||||
button: { text: "Book Now", href: "#contact" },
|
|
||||||
features: [
|
|
||||||
"Exterior wash and dry",
|
|
||||||
"Tire shine",
|
|
||||||
"Window cleaning",
|
|
||||||
"Quick vacuum interior",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "interior-refresh",
|
id: "interior-refresh", title: "Interior Refresh", price: "Starting at $149", period: "per vehicle", imageSrc: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=2", imageAlt: "Interior Refresh package", button: { text: "Book Now", href: "#contact" },
|
||||||
title: "Interior Refresh",
|
features: ["Complete interior vacuum", "Carpet and upholstery cleaning", "Dashboard cleaning", "Interior protectant"],
|
||||||
price: "Starting at $149",
|
|
||||||
period: "per vehicle",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2004.jpg?_wi=2",
|
|
||||||
imageAlt: "Interior Refresh package",
|
|
||||||
button: { text: "Book Now", href: "#contact" },
|
|
||||||
features: [
|
|
||||||
"Complete interior vacuum",
|
|
||||||
"Carpet and upholstery cleaning",
|
|
||||||
"Dashboard cleaning",
|
|
||||||
"Interior protectant",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "exterior-shine",
|
id: "full-detail", title: "Full Detail", price: "Starting at $299", period: "per vehicle", imageSrc: "http://img.b2bpic.net/free-photo/man-polishing-car-with-orbital-applicator_1303-30576.jpg?_wi=2", imageAlt: "Full Detail package - Most Popular", button: { text: "Book Now", href: "#contact" },
|
||||||
title: "Exterior Shine",
|
features: ["Complete interior detailing", "Professional exterior detailing", "Paint protection", "Engine bay cleaning", "Leather conditioning", "Interior protectant"],
|
||||||
price: "Starting at $179",
|
|
||||||
period: "per vehicle",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/man-washing-car-carwash-station-wearing-orange-vest_651396-2793.jpg?_wi=2",
|
|
||||||
imageAlt: "Exterior Shine package",
|
|
||||||
button: { text: "Book Now", href: "#contact" },
|
|
||||||
features: [
|
|
||||||
"Professional wash and dry",
|
|
||||||
"Clay bar decontamination",
|
|
||||||
"Premium wax application",
|
|
||||||
"Trim and tire conditioning",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "full-detail",
|
|
||||||
title: "Full Detail",
|
|
||||||
price: "Starting at $299",
|
|
||||||
period: "per vehicle",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/man-polishing-car-with-orbital-applicator_1303-30576.jpg?_wi=2",
|
|
||||||
imageAlt: "Full Detail package - Most Popular",
|
|
||||||
button: { text: "Book Now", href: "#contact" },
|
|
||||||
features: [
|
|
||||||
"Complete interior detailing",
|
|
||||||
"Professional exterior detailing",
|
|
||||||
"Paint protection",
|
|
||||||
"Engine bay cleaning",
|
|
||||||
"Leather conditioning",
|
|
||||||
"Interior protectant",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "ceramic-package",
|
|
||||||
title: "Ceramic Coating",
|
|
||||||
price: "Starting at $499",
|
|
||||||
period: "per vehicle",
|
|
||||||
imageSrc:
|
|
||||||
"http://img.b2bpic.net/free-photo/man-working-car-detailing-coating-car_1303-30596.jpg?_wi=4",
|
|
||||||
imageAlt: "Ceramic Coating package",
|
|
||||||
button: { text: "Book Now", href: "#contact" },
|
|
||||||
features: [
|
|
||||||
"Full detail package included",
|
|
||||||
"Professional ceramic coating",
|
|
||||||
"Multi-year paint protection",
|
|
||||||
"Hydrophobic finish",
|
|
||||||
"Free 6-month inspection",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[{ text: "Schedule Your Detail Today", href: "#contact" }]}
|
buttons={[{ text: "View All Packages", href: "/" }]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Contact */}
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplitForm
|
||||||
|
title="Get Your Custom Quote"
|
||||||
|
description="Tell us about your vehicle and desired services. We'll provide a detailed quote and availability."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
|
{ name: "phone", type: "tel", placeholder: "(###) ###-####", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "your@email.com", required: true },
|
||||||
|
{ name: "vehicleType", type: "text", placeholder: "Vehicle Type", required: true },
|
||||||
|
]}
|
||||||
|
textarea={{ name: "details", placeholder: "Describe your vehicle's condition and desired services...", rows: 4 }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193588.jpg?_wi=3"
|
||||||
|
imageAlt="Professional detailing equipment"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
buttonText="Request Quote"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Footer */}
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/luxury-car-interior-brown-black-colors_181624-31177.jpg?_wi=3"
|
imageSrc="http://img.b2bpic.net/free-photo/luxury-car-interior-brown-black-colors_181624-31177.jpg?_wi=3"
|
||||||
@@ -146,8 +97,7 @@ export default function PricingPage() {
|
|||||||
copyrightText="© 2025 Elite Auto Detailing & Mobile Services LLC. All rights reserved."
|
copyrightText="© 2025 Elite Auto Detailing & Mobile Services LLC. All rights reserved."
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{ label: "Interior Detailing", href: "/services" },
|
{ label: "Interior Detailing", href: "/services" },
|
||||||
{ label: "Exterior Detailing", href: "/services" },
|
{ label: "Exterior Detailing", href: "/services" },
|
||||||
{ label: "Paint Correction", href: "/services" },
|
{ label: "Paint Correction", href: "/services" },
|
||||||
@@ -156,8 +106,7 @@ export default function PricingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{ label: "Home", href: "/" },
|
{ label: "Home", href: "/" },
|
||||||
{ label: "About Us", href: "/about" },
|
{ label: "About Us", href: "/about" },
|
||||||
{ label: "Gallery", href: "/gallery" },
|
{ label: "Gallery", href: "/gallery" },
|
||||||
@@ -166,14 +115,10 @@ export default function PricingPage() {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Contact", items: [
|
||||||
items: [
|
|
||||||
{ label: "Call: (###) ###-####", href: "tel:+1-###-###-####" },
|
{ label: "Call: (###) ###-####", href: "tel:+1-###-###-####" },
|
||||||
{ label: "Text Us", href: "sms:+1-###-###-####" },
|
{ label: "Text Us", href: "sms:+1-###-###-####" },
|
||||||
{
|
{ label: "Email: info@eliteautodetailing.com", href: "mailto:info@eliteautodetailing.com" },
|
||||||
label: "Email: info@eliteautodetailing.com",
|
|
||||||
href: "mailto:info@eliteautodetailing.com",
|
|
||||||
},
|
|
||||||
{ label: "Service Area: [City/Region]", href: "#" },
|
{ label: "Service Area: [City/Region]", href: "#" },
|
||||||
{ label: "Hours: Mon-Sun, By Appointment", href: "#" },
|
{ label: "Hours: Mon-Sun, By Appointment", href: "#" },
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user