2 Commits

Author SHA1 Message Date
2f108a71bf Update src/app/page.tsx 2026-03-09 12:42:19 +00:00
0aa5e69463 Merge version_1 into main
Merge version_1 into main
2026-03-09 12:20:13 +00:00

View File

@@ -9,9 +9,13 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase'; 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() { export default function LandingPage() {
const handleMapOpen = () => {
window.open('https://maps.google.com/?q=Z-42,+Block+Z,+Sector+12,+Noida,+UP+201301', '_blank');
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
@@ -78,13 +82,22 @@ export default function LandingPage() {
features={[ features={[
{ {
icon: Sparkles, 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, 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, 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" animationType="slide-up"
textboxLayout="default" 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." description="Contact us today to schedule a pickup or visit our store. We're here to serve you with excellence."
buttons={[ buttons={[
{ text: "Call Now: 7937836389", href: "tel:7937836389" }, { text: "Call Now: 7937836389", href: "tel:7937836389" },
{ text: "Visit Our Store", href: "#" }, { text: "Visit Our Store", onClick: handleMapOpen },
]} ]}
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}
@@ -185,7 +198,7 @@ export default function LandingPage() {
{ {
title: "Contact", items: [ title: "Contact", items: [
{ label: "Phone: 7937836389", href: "tel:7937836389" }, { 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: "Email: info@twelvedrycleaners.com", href: "mailto:info@twelvedrycleaners.com" },
{ label: "Hours: Mon-Sat 8AM-8PM", href: "#" }, { label: "Hours: Mon-Sat 8AM-8PM", href: "#" },
], ],