2 Commits

Author SHA1 Message Date
c7aac98684 Update src/app/page.tsx 2026-03-05 14:20:25 +00:00
26738d4087 Merge version_2 into main
Merge version_2 into main
2026-03-05 14:16:46 +00:00

View File

@@ -8,7 +8,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Award, Heart, Sparkles, Instagram, Mail, Phone } from 'lucide-react';
@@ -224,15 +224,20 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
text="2,000+ happy customers trust Dream Fragrances. Ready to dream your fragrance? Reach out to us and discover how scent can transform your identity, celebrate your moments, and leave a lasting impression."
animationType="entrance-slide"
buttons={[
{ text: "Contact Us", href: "mailto:dreamfragrances.24@gmail.com" },
{ text: "WhatsApp +92 333 2151778", href: "https://wa.me/923332151778" }
]}
<ContactSplit
tag="Get in Touch"
title="Ready to Dream Your Fragrance?"
description="Connect with our fragrance artisans and discover how scent can transform your identity, celebrate your moments, and leave a lasting impression."
background={{ variant: "plain" }}
useInvertedBackground={true}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AWsvJgz7vTlElFWswVJjuOIiQy/uploaded-1772720387047-t9vr58gx.jpg"
imageAlt="Dream Fragrances luxury collection"
mediaAnimation="blur-reveal"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
termsText="By subscribing, you agree to receive updates about new fragrances and exclusive offers."
onSubmit={(email) => console.log('Newsletter signup:', email)}
/>
</div>
@@ -249,4 +254,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}