3 Commits

Author SHA1 Message Date
bc0fd98898 Update src/app/page.tsx 2026-03-04 18:19:06 +00:00
bef72d6469 Update src/app/layout.tsx 2026-03-04 18:19:05 +00:00
7142c1b21d Merge version_1 into main
Merge version_1 into main
2026-03-04 18:17:36 +00:00
2 changed files with 10 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Sparkles, Shield, Zap, Linkedin, Facebook, Instagram } from 'lucide-react'; import { Sparkles, Shield, Zap, Linkedin, Facebook, Instagram, Crown } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -87,6 +87,13 @@ export default function LandingPage() {
title="Transparent Pricing" title="Transparent Pricing"
description="Elite pricing for elite vehicles. Custom packages available for exotic and rare cars." description="Elite pricing for elite vehicles. Custom packages available for exotic and rare cars."
plans={[ plans={[
{
id: "elite-package", title: "Elite Package", price: "$3,999", period: "per vehicle", features: [
"Ultimate ceramic protection", "Full correction + polishing", "Luxury interior spa treatment", "PPF (Paint Protection Film)", "Scotchgard interior protection", "Premium detailing every 3 months", "Lifetime warranty"
],
button: { text: "Book Service", href: "contact" },
imageSrc: "http://img.b2bpic.net/free-photo/man-car-clean-using-brush-clean-up-all-details-inside-vehicle_1303-30586.jpg", imageAlt: "Exotic car detailing"
},
{ {
id: "ceramic-pro", title: "Ceramic Pro", price: "$1,299", period: "per vehicle", features: [ id: "ceramic-pro", title: "Ceramic Pro", price: "$1,299", period: "per vehicle", features: [
"Professional ceramic coating", "Paint correction (2-stage)", "Interior detailing", "Wheel and tire treatment", "1-year warranty" "Professional ceramic coating", "Paint correction (2-stage)", "Interior detailing", "Wheel and tire treatment", "1-year warranty"
@@ -100,13 +107,6 @@ export default function LandingPage() {
], ],
button: { text: "Book Service", href: "contact" }, button: { text: "Book Service", href: "contact" },
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22315.jpg", imageAlt: "Car interior detailing" imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22315.jpg", imageAlt: "Car interior detailing"
},
{
id: "elite-package", title: "Elite Package", price: "$3,999", period: "per vehicle", features: [
"Ultimate ceramic protection", "Full correction + polishing", "Luxury interior spa treatment", "PPF (Paint Protection Film)", "Scotchgard interior protection", "Premium detailing every 3 months", "Lifetime warranty"
],
button: { text: "Book Service", href: "contact" },
imageSrc: "http://img.b2bpic.net/free-photo/man-car-clean-using-brush-clean-up-all-details-inside-vehicle_1303-30586.jpg", imageAlt: "Exotic car detailing"
} }
]} ]}
animationType="slide-up" animationType="slide-up"