2 Commits

Author SHA1 Message Date
e390074ca4 Update src/app/page.tsx 2026-05-15 05:15:20 +00:00
f98ae962ef Merge version_2 into main
Merge version_2 into main
2026-05-15 05:07:28 +00:00

View File

@@ -12,7 +12,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, MapPin, ShieldCheck, Sparkles, Zap, Facebook, Instagram, Twitter } from "lucide-react"; import { Facebook, Instagram, Linkedin, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -37,7 +37,7 @@ export default function LandingPage() {
{ name: "Reviews", id: "#reviews" }, { name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "#contact" }, { name: "Contact", id: "#contact" },
]} ]}
brandName="Elite Detailing" brandName="Easy Done Mobile Detailing Service"
button={{ text: "Book Now", href: "#contact" }} button={{ text: "Book Now", href: "#contact" }}
/> />
</div> </div>
@@ -78,7 +78,7 @@ export default function LandingPage() {
{ title: "Interior Deep Clean", description: "Professional deep cleaning of leather and upholstery.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/road-safety-close-up-view-interior-brand-new-modern-luxury-automobile_146671-16595.jpg?_wi=2" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193621.jpg" } } { title: "Interior Deep Clean", description: "Professional deep cleaning of leather and upholstery.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/road-safety-close-up-view-interior-brand-new-modern-luxury-automobile_146671-16595.jpg?_wi=2" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193621.jpg" } }
]} ]}
showStepNumbers={true} showStepNumbers={true}
title="Elite Detailing Services" title="Easy Done Mobile Detailing Service"
description="We specialize in premium car care, focusing on every detail to ensure your car looks extraordinary." description="We specialize in premium car care, focusing on every detail to ensure your car looks extraordinary."
/> />
</div> </div>
@@ -89,8 +89,8 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
plans={[ plans={[
{ id: "p1", title: "Essentials", price: "$150", period: "/session", features: ["Full exterior wash", "Window cleaning"], button: { text: "Book Now", href: "#contact" } }, { id: "p1", title: "Essentials", price: "$350", period: "/session", features: ["Full exterior wash", "Window cleaning"], button: { text: "Book Now", href: "#contact" } },
{ id: "p2", title: "Elite Luxury", price: "$450", period: "/session", features: ["Everything in Essentials", "Ceramic coating"], button: { text: "Book Now", href: "#contact" } } { id: "p2", title: "Luxury", price: "$450", period: "/session", features: ["Everything in Essentials", "Ceramic coating"], button: { text: "Book Now", href: "#contact" } }
]} ]}
title="Transparent Pricing Packages" title="Transparent Pricing Packages"
description="Choose the level of care your vehicle deserves." description="Choose the level of care your vehicle deserves."
@@ -133,7 +133,7 @@ export default function LandingPage() {
title="The Detailing Hub" title="The Detailing Hub"
description="Expert tips on maintaining your vehicle." description="Expert tips on maintaining your vehicle."
blogs={[ blogs={[
{ id: "b1", category: "Maintenance", title: "Why Ceramic Coating Matters", excerpt: "Keep your paint protected.", imageSrc: "http://img.b2bpic.net/free-photo/splashing-bubbling-water_23-2147798198.jpg", authorName: "Team Elite", authorAvatar: "", date: "Oct 12, 2023" } { id: "b1", category: "Maintenance", title: "Why Ceramic Coating Matters", excerpt: "Keep your paint protected.", imageSrc: "http://img.b2bpic.net/free-photo/splashing-bubbling-water_23-2147798198.jpg", authorName: "Easy Done Team", authorAvatar: "", date: "Oct 12, 2023" }
]} ]}
/> />
</div> </div>
@@ -151,15 +151,15 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="Elite Detailing" logoText="Easy Done Mobile Detailing Service"
columns={[ columns={[
{ items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] }, { items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] },
{ items: [{ label: "Pricing", href: "#pricing" }, { label: "Contact", href: "#contact" }] }, { items: [{ label: "Pricing", href: "#pricing" }, { label: "Contact", href: "#contact" }] },
{ items: [{ label: "Instagram" }, { label: "Twitter" }, { label: "Facebook" }] } { items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "TikTok", href: "#" }] }
]} ]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }