6 Commits

Author SHA1 Message Date
02807915c8 Update src/app/page.tsx 2026-03-15 19:07:48 +00:00
565e4b028f Merge version_4 into main
Merge version_4 into main
2026-03-15 19:01:03 +00:00
190fa4ed0a Update src/app/page.tsx 2026-03-15 19:00:59 +00:00
796284a11b Merge version_3 into main
Merge version_3 into main
2026-03-15 18:59:34 +00:00
c0c02f63e5 Update src/app/page.tsx 2026-03-15 18:59:30 +00:00
f434c6433d Merge version_2 into main
Merge version_2 into main
2026-03-15 18:57:54 +00:00

View File

@@ -11,9 +11,13 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FaqBase from "@/components/sections/faq/FaqBase"; import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText"; import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Camera, Heart, HelpCircle, MessageCircle, ShoppingCart, Sparkles, Zap, Crown, Shield, Zap as Lightning } from "lucide-react"; import { Camera, Heart, HelpCircle, MessageCircle, ShoppingCart, Sparkles, Zap, Crown, Shield, Zap as Lightning, Phone } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
const phoneNumber = "+923299462929";
const whatsappLink = `https://wa.me/${phoneNumber.replace(/[^0-9]/g, '')}?text=Hi%20Crown%20Fragrance%2C%20I%20would%20like%20to%20know%20more%20about%20your%20fragrances.`;
const callLink = `tel:${phoneNumber}`;
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-bubble" defaultButtonVariant="hover-bubble"
@@ -37,7 +41,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
button={{ button={{
text: "WhatsApp Now", href: "https://wa.me/923001234567?text=Hi%20Crown%20Fragrance%2C%20I%20would%20like%20to%20know%20more%20about%20your%20fragrances." text: "WhatsApp Now", href: whatsappLink
}} }}
/> />
</div> </div>
@@ -67,8 +71,8 @@ export default function LandingPage() {
} }
]} ]}
buttons={[ buttons={[
{ text: "Explore Exclusive Scents", href: "#products" }, { text: "Shop Now & Get 20% Off", href: "#products" },
{ text: "WhatsApp Now", href: "https://wa.me/923001234567?text=Hi%20Crown%20Fragrance%2C%20I%20would%20like%20to%20browse%20your%20collection." } { text: "WhatsApp Now", href: whatsappLink }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
carouselPosition="right" carouselPosition="right"
@@ -83,7 +87,10 @@ export default function LandingPage() {
tag="Limited Stock" tag="Limited Stock"
tagIcon={Sparkles} tagIcon={Sparkles}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[{ text: "View All Products", href: "#" }]} buttons={[
{ text: "Shop Premium Scents Now", href: "#" },
{ text: "View FAQ", href: "#faq" }
]}
buttonAnimation="opacity" buttonAnimation="opacity"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
@@ -152,7 +159,7 @@ export default function LandingPage() {
}, },
{ {
title: "24/7 WhatsApp Support", description: "Direct communication channel for product inquiries, order tracking, and customer support anytime.", buttonIcon: MessageCircle, title: "24/7 WhatsApp Support", description: "Direct communication channel for product inquiries, order tracking, and customer support anytime.", buttonIcon: MessageCircle,
buttonHref: "https://wa.me/923001234567" buttonHref: whatsappLink
} }
]} ]}
ariaLabel="Features Section" ariaLabel="Features Section"
@@ -255,13 +262,13 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactText
text="Ready to experience luxury? Connect with us on WhatsApp for personalized recommendations, exclusive deals, and instant support. Your perfect fragrance is just a message away." text="Ready to experience luxury? Connect with us on WhatsApp for personalized recommendations, exclusive deals, and instant support. Your perfect fragrance is just a message away. You can also call us directly at +923299462929 for immediate assistance."
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={true} useInvertedBackground={true}
animationType="entrance-slide" animationType="entrance-slide"
buttons={[ buttons={[
{ text: "Chat on WhatsApp", href: "https://wa.me/923001234567?text=Hi%20Crown%20Fragrance%2C%20I%20would%20like%20to%20chat%20with%20you." }, { text: "Chat on WhatsApp", href: whatsappLink },
{ text: "Call Us", href: "tel:+923001234567" } { text: "Call Us", href: callLink }
]} ]}
ariaLabel="Contact Section" ariaLabel="Contact Section"
/> />
@@ -271,10 +278,10 @@ export default function LandingPage() {
<FooterLogoReveal <FooterLogoReveal
logoText="Crown Fragrance" logoText="Crown Fragrance"
leftLink={{ text: "Privacy Policy", href: "#" }} leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "WhatsApp Support", href: "https://wa.me/923001234567" }} rightLink={{ text: "WhatsApp: +923299462929", href: whatsappLink }}
ariaLabel="Site Footer" ariaLabel="Site Footer"
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }