Compare commits

...

7 Commits

Author SHA1 Message Date
8d392f639a Update src/app/page.tsx 2026-03-17 19:45:47 +00:00
816e52501f Merge version_3 into main
Merge version_3 into main
2026-03-17 19:43:07 +00:00
5ba0f574f3 Update src/app/page.tsx 2026-03-17 19:43:03 +00:00
46582b5473 Merge version_2 into main
Merge version_2 into main
2026-03-17 19:34:30 +00:00
4e76b0c85c Merge version_2 into main
Merge version_2 into main
2026-03-17 19:13:04 +00:00
71910209cc Merge version_2 into main
Merge version_2 into main
2026-03-17 19:12:39 +00:00
73659852ae Merge version_2 into main
Merge version_2 into main
2026-03-17 19:12:12 +00:00

View File

@@ -49,8 +49,7 @@ export default function LandingPage() {
tagIcon={Star} tagIcon={Star}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Call Now", href: "tel:(747)800-7770" }, { text: "Call Now", href: "tel:(747)800-7770" }
{ text: "Book Appointment", href: "#appointment" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
leftCarouselItems={[ leftCarouselItems={[
@@ -269,70 +268,6 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="crowns" data-section="crowns">
<ProductCardFour
title="Crowns & Tiaras"
description="Add a touch of royalty to your bridal look with our stunning selection of crowns and tiaras. Each piece is designed to make you feel like a queen."
textboxLayout="default"
useInvertedBackground={true}
tag="Crown Collection"
tagIcon={Crown}
tagAnimation="slide-up"
buttons={[
{ text: "Discover Crowns", href: "#appointment" }
]}
buttonAnimation="slide-up"
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
products={[
{
id: "crown-1", name: "Classic Pearl Tiara", price: "Starting at $350", variant: "Silver with Pearls", imageSrc: "http://img.b2bpic.net/free-photo/woman-looking-herself_1157-187.jpg?_wi=3", imageAlt: "Classic pearl tiara for brides"
},
{
id: "crown-2", name: "Royal Crystal Crown", price: "Starting at $450", variant: "Gold with Crystals", imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-two-shirts_23-2147601332.jpg?_wi=3", imageAlt: "Royal crystal studded crown"
},
{
id: "crown-3", name: "Vintage Style Tiara", price: "Starting at $380", variant: "Antique Gold", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-bride-posing-medium-shot_23-2149860841.jpg?_wi=1", imageAlt: "Vintage style bridal tiara"
},
{
id: "crown-4", name: "Modern Geometric Crown", price: "Starting at $420", variant: "White Gold", imageSrc: "http://img.b2bpic.net/free-photo/young-women-enjoying-bachelorette-party_23-2149278361.jpg?_wi=1", imageAlt: "Modern geometric bridal crown"
},
{
id: "crown-5", name: "Delicate Rhinestone Tiara", price: "Starting at $320", variant: "Silver Rhinestones", imageSrc: "http://img.b2bpic.net/free-photo/elegant-beautiful-fashionable-woman-blonde-long-white-dre_7502-4897.jpg?_wi=1", imageAlt: "Delicate rhinestone tiara"
},
{
id: "crown-6", name: "Boho Flower Crown", price: "Starting at $280", variant: "Gold with Florals", imageSrc: "http://img.b2bpic.net/free-photo/elegant-bride-posing_23-2148105871.jpg?_wi=1", imageAlt: "Bohemian flower crown for brides"
}
]}
/>
</div>
<div id="appointment" data-section="appointment">
<ContactCenter
tag="Limited Appointments"
title="Book Your Bridal Appointment Today"
description="Schedule your private fitting and let our expert team help you find your dream dress. Join 500+ happy brides who found their perfect gown at Irentall."
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Your name"
buttonText="Book Now"
termsText="By booking an appointment, you agree to our appointment policy. We look forward to seeing you soon!"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Visit Us"
title="Location & Hours"
description="Visit Irentall Bridal Boutique in the heart of Los Feliz. We're open 6 days a week and ready to help you find your perfect dress."
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Your phone number"
buttonText="Get Directions"
termsText="📍 3106 Los Feliz Blvd, Los Angeles, CA 90039 | ☎️ (747) 800-7770"
/>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterSimple
columns={[ columns={[
@@ -356,7 +291,6 @@ export default function LandingPage() {
title: "Accessories", items: [ title: "Accessories", items: [
{ label: "Shoes", href: "#shoes" }, { label: "Shoes", href: "#shoes" },
{ label: "Veils & Headpieces", href: "#veils" }, { label: "Veils & Headpieces", href: "#veils" },
{ label: "Crowns & Tiaras", href: "#crowns" },
{ label: "Complete Looks", href: "#appointment" } { label: "Complete Looks", href: "#appointment" }
] ]
}, },
@@ -375,4 +309,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }