Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-09 12:42:23 +00:00

View File

@@ -9,9 +9,13 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Leaf, Phone, Sparkles, Zap } from 'lucide-react';
import { Leaf, Phone, Sparkles, Zap, MapPin } from 'lucide-react';
export default function LandingPage() {
const handleMapOpen = () => {
window.open('https://maps.google.com/?q=Z-42,+Block+Z,+Sector+12,+Noida,+UP+201301', '_blank');
};
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -78,13 +82,22 @@ export default function LandingPage() {
features={[
{
icon: Sparkles,
title: "Premium Dry Cleaning", description: "Expert cleaning for suits, formal wear, and delicate fabrics using advanced technology"},
title: "Premium Dry Cleaning", description: "Expert cleaning for suits, formal wear, and delicate fabrics using advanced technology", button: {
text: "Learn More", href: "#"
}
},
{
icon: Zap,
title: "Express Service", description: "Fast turnaround on everyday clothes with same-day delivery available"},
title: "Express Service", description: "Fast turnaround on everyday clothes with same-day delivery available", button: {
text: "Learn More", href: "#"
}
},
{
icon: Leaf,
title: "Eco-Friendly Process", description: "Sustainable cleaning methods that protect fabrics and the environment"},
title: "Eco-Friendly Process", description: "Sustainable cleaning methods that protect fabrics and the environment", button: {
text: "Learn More", href: "#"
}
},
]}
animationType="slide-up"
textboxLayout="default"
@@ -162,7 +175,7 @@ export default function LandingPage() {
description="Contact us today to schedule a pickup or visit our store. We're here to serve you with excellence."
buttons={[
{ text: "Call Now: 7937836389", href: "tel:7937836389" },
{ text: "Visit Our Store", href: "#" },
{ text: "Visit Our Store", onClick: handleMapOpen },
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -185,7 +198,7 @@ export default function LandingPage() {
{
title: "Contact", items: [
{ label: "Phone: 7937836389", href: "tel:7937836389" },
{ label: "Address: Z-42, Block Z, Sector 12, Noida, UP 201301", href: "#" },
{ label: "Address: Z-42, Block Z, Sector 12, Noida, UP 201301", href: "#", onClick: handleMapOpen },
{ label: "Email: info@twelvedrycleaners.com", href: "mailto:info@twelvedrycleaners.com" },
{ label: "Hours: Mon-Sat 8AM-8PM", href: "#" },
],
@@ -203,4 +216,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}