4 Commits

Author SHA1 Message Date
95c341abdb Update src/app/page.tsx 2026-05-15 05:18:05 +00:00
23b76eab47 Merge version_3 into main
Merge version_3 into main
2026-05-15 05:15:23 +00:00
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,6 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import { Award, MapPin, ShieldCheck, Sparkles, Zap, Facebook, Instagram, Twitter } from "lucide-react";
export default function LandingPage() {
return (
@@ -37,7 +36,7 @@ export default function LandingPage() {
{ name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "#contact" },
]}
brandName="Elite Detailing"
brandName="Easy Done Mobile Detailing Service"
button={{ text: "Book Now", href: "#contact" }}
/>
</div>
@@ -68,7 +67,7 @@ export default function LandingPage() {
/>
</div>
<div id="services" data-section="services">
<div id="services" data-section="services" className="py-20">
<FeatureCardNine
animationType="slide-up"
textboxLayout="inline-image"
@@ -78,26 +77,26 @@ 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" } }
]}
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."
/>
</div>
<div id="pricing" data-section="pricing">
<div id="pricing" data-section="pricing" className="py-20">
<PricingCardNine
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
plans={[
{ id: "p1", title: "Essentials", price: "$150", 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: "p1", title: "Essentials", price: "$350", period: "/session", features: ["Full exterior wash", "Window cleaning"], 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"
description="Choose the level of care your vehicle deserves."
/>
</div>
<div id="reviews" data-section="reviews">
<div id="reviews" data-section="reviews" className="py-20">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="split"
@@ -133,12 +132,12 @@ export default function LandingPage() {
title="The Detailing Hub"
description="Expert tips on maintaining your vehicle."
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/close-up-hand-applying-ceramic-coating-car_23-2149591234.jpg?_wi=1", authorName: "Easy Done Team", authorAvatar: "", date: "Oct 12, 2023" }
]}
/>
</div>
<div id="contact" data-section="contact">
<div id="contact" data-section="contact" className="py-20">
<ContactCTA
useInvertedBackground={true}
background={{ variant: "radial-gradient" }}
@@ -151,15 +150,15 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Elite Detailing"
logoText="Easy Done Mobile Detailing Service"
columns={[
{ items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }] },
{ 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>
</ReactLenis>
</ThemeProvider>
);
}
}