7 Commits

Author SHA1 Message Date
f758cabb43 Merge version_5 into main
Merge version_5 into main
2026-03-15 19:07:52 +00:00
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 ContactText from "@/components/sections/contact/ContactText";
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() {
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 (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -37,7 +41,7 @@ export default function LandingPage() {
{ name: "Contact", id: "contact" }
]}
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>
@@ -67,8 +71,8 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Explore Exclusive Scents", href: "#products" },
{ text: "WhatsApp Now", href: "https://wa.me/923001234567?text=Hi%20Crown%20Fragrance%2C%20I%20would%20like%20to%20browse%20your%20collection." }
{ text: "Shop Now & Get 20% Off", href: "#products" },
{ text: "WhatsApp Now", href: whatsappLink }
]}
buttonAnimation="slide-up"
carouselPosition="right"
@@ -83,7 +87,10 @@ export default function LandingPage() {
tag="Limited Stock"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[{ text: "View All Products", href: "#" }]}
buttons={[
{ text: "Shop Premium Scents Now", href: "#" },
{ text: "View FAQ", href: "#faq" }
]}
buttonAnimation="opacity"
textboxLayout="default"
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,
buttonHref: "https://wa.me/923001234567"
buttonHref: whatsappLink
}
]}
ariaLabel="Features Section"
@@ -255,13 +262,13 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<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" }}
useInvertedBackground={true}
animationType="entrance-slide"
buttons={[
{ text: "Chat on WhatsApp", href: "https://wa.me/923001234567?text=Hi%20Crown%20Fragrance%2C%20I%20would%20like%20to%20chat%20with%20you." },
{ text: "Call Us", href: "tel:+923001234567" }
{ text: "Chat on WhatsApp", href: whatsappLink },
{ text: "Call Us", href: callLink }
]}
ariaLabel="Contact Section"
/>
@@ -271,10 +278,10 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="Crown Fragrance"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "WhatsApp Support", href: "https://wa.me/923001234567" }}
rightLink={{ text: "WhatsApp: +923299462929", href: whatsappLink }}
ariaLabel="Site Footer"
/>
</div>
</ThemeProvider>
);
}
}