Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-03-09 12:45:44 +00:00
parent a943d75e59
commit 49ee365f06

View File

@@ -9,13 +9,9 @@ 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, MapPin } from 'lucide-react';
import { Leaf, Phone, Sparkles, Zap } 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"
@@ -82,22 +78,13 @@ export default function LandingPage() {
features={[
{
icon: Sparkles,
title: "Premium Dry Cleaning", description: "Expert cleaning for suits, formal wear, and delicate fabrics using advanced technology", button: {
text: "Learn More", href: "#"
}
},
title: "Premium Dry Cleaning", description: "Expert cleaning for suits, formal wear, and delicate fabrics using advanced technology"},
{
icon: Zap,
title: "Express Service", description: "Fast turnaround on everyday clothes with same-day delivery available", button: {
text: "Learn More", href: "#"
}
},
title: "Express Service", description: "Fast turnaround on everyday clothes with same-day delivery available"},
{
icon: Leaf,
title: "Eco-Friendly Process", description: "Sustainable cleaning methods that protect fabrics and the environment", button: {
text: "Learn More", href: "#"
}
},
title: "Eco-Friendly Process", description: "Sustainable cleaning methods that protect fabrics and the environment"},
]}
animationType="slide-up"
textboxLayout="default"
@@ -175,7 +162,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", onClick: handleMapOpen },
{ text: "Visit Our Store", href: "#" },
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
@@ -198,7 +185,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: "#", onClick: handleMapOpen },
{ label: "Address: Z-42, Block Z, Sector 12, Noida, UP 201301", href: "#" },
{ label: "Email: info@twelvedrycleaners.com", href: "mailto:info@twelvedrycleaners.com" },
{ label: "Hours: Mon-Sat 8AM-8PM", href: "#" },
],
@@ -216,4 +203,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}