Compare commits
4 Commits
version_14
...
version_16
| Author | SHA1 | Date | |
|---|---|---|---|
| 3eec907d94 | |||
| ac8cb3c24e | |||
| 8af2e7629e | |||
| abcce974ad |
@@ -139,6 +139,23 @@ export default function LandingPage() {
|
|||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
|
{/* Decorative Vertical Border/Divider with Gold Accents */}
|
||||||
|
<div className="fixed left-1/2 transform -translate-x-1/2 top-0 w-px h-screen pointer-events-none z-0">
|
||||||
|
{/* Main vertical line with gradient */}
|
||||||
|
<div className="absolute left-0 top-0 w-full h-full bg-gradient-to-b from-transparent via-[#D4AF37] to-transparent opacity-40" />
|
||||||
|
|
||||||
|
{/* Gold accent dots distributed throughout */}
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[10%] w-1.5 h-1.5 rounded-full bg-[#D4AF37] opacity-60" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[20%] w-1 h-1 rounded-full bg-[#D4AF37] opacity-50" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[30%] w-2 h-2 rounded-full bg-[#D4AF37] opacity-45" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[40%] w-1 h-1 rounded-full bg-[#D4AF37] opacity-55" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[50%] w-1.5 h-1.5 rounded-full bg-[#D4AF37] opacity-50" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[60%] w-1 h-1 rounded-full bg-[#D4AF37] opacity-55" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[70%] w-2 h-2 rounded-full bg-[#D4AF37] opacity-45" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[80%] w-1 h-1 rounded-full bg-[#D4AF37] opacity-60" />
|
||||||
|
<div className="absolute left-1/2 transform -translate-x-1/2 top-[90%] w-1.5 h-1.5 rounded-full bg-[#D4AF37] opacity-50" />
|
||||||
|
</div>
|
||||||
|
|
||||||
{/* Fixed "Go to Dresses" Button */}
|
{/* Fixed "Go to Dresses" Button */}
|
||||||
<button
|
<button
|
||||||
onClick={scrollToGallery}
|
onClick={scrollToGallery}
|
||||||
@@ -164,7 +181,7 @@ export default function LandingPage() {
|
|||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav" className="relative z-20">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
brandName="Irentall"
|
brandName="Irentall"
|
||||||
navItems={[
|
navItems={[
|
||||||
@@ -179,7 +196,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero" className="relative z-10">
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
title="Find Your Perfect Wedding Dress in Los Angeles"
|
title="Find Your Perfect Wedding Dress in Los Angeles"
|
||||||
description="Personalized bridal styling with a curated collection of stunning gowns. Our expert team will guide you through every moment of your journey to find the dress of your dreams."
|
description="Personalized bridal styling with a curated collection of stunning gowns. Our expert team will guide you through every moment of your journey to find the dress of your dreams."
|
||||||
@@ -218,7 +235,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features" className="relative z-10">
|
||||||
<FeatureCardSixteen
|
<FeatureCardSixteen
|
||||||
title="What Makes Us Different"
|
title="What Makes Us Different"
|
||||||
description="At Irentall, we believe every bride deserves a personalized, stress-free experience. Here's what sets us apart from other boutiques."
|
description="At Irentall, we believe every bride deserves a personalized, stress-free experience. Here's what sets us apart from other boutiques."
|
||||||
@@ -241,7 +258,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about" className="relative z-10">
|
||||||
<TestimonialAboutCard
|
<TestimonialAboutCard
|
||||||
tag="Meet Our Founder"
|
tag="Meet Our Founder"
|
||||||
tagIcon={User}
|
tagIcon={User}
|
||||||
@@ -257,7 +274,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials" className="relative z-10">
|
||||||
<TestimonialCardSixteen
|
<TestimonialCardSixteen
|
||||||
title="Real Brides, Real Love"
|
title="Real Brides, Real Love"
|
||||||
description="See what brides in Los Angeles are saying about their Irentall experience."
|
description="See what brides in Los Angeles are saying about their Irentall experience."
|
||||||
@@ -293,7 +310,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="gallery" data-section="gallery">
|
<div id="gallery" data-section="gallery" className="relative z-10">
|
||||||
<div className="relative">
|
<div className="relative">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Our Dress Collection"
|
title="Our Dress Collection"
|
||||||
@@ -387,7 +404,7 @@ export default function LandingPage() {
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="reels" data-section="reels">
|
<div id="reels" data-section="reels" className="relative z-10">
|
||||||
<BlogCardThree
|
<BlogCardThree
|
||||||
title="Behind the Beauty"
|
title="Behind the Beauty"
|
||||||
description=""
|
description=""
|
||||||
@@ -415,7 +432,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="shoes" data-section="shoes">
|
<div id="shoes" data-section="shoes" className="relative z-10">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Bridal Shoes"
|
title="Bridal Shoes"
|
||||||
description="Complete your wedding day look with stunning shoes designed for comfort and elegance. From classic heels to modern designs."
|
description="Complete your wedding day look with stunning shoes designed for comfort and elegance. From classic heels to modern designs."
|
||||||
@@ -449,7 +466,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="veils" data-section="veils">
|
<div id="veils" data-section="veils" className="relative z-10">
|
||||||
<ProductCardFour
|
<ProductCardFour
|
||||||
title="Veils & Crowns"
|
title="Veils & Crowns"
|
||||||
description="Enhance your bridal beauty with our exquisite collection of veils and headpieces. Each piece is carefully selected to complement your gown perfectly."
|
description="Enhance your bridal beauty with our exquisite collection of veils and headpieces. Each piece is carefully selected to complement your gown perfectly."
|
||||||
@@ -483,7 +500,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact" className="relative z-10">
|
||||||
<ContactCTA
|
<ContactCTA
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
tagIcon={Phone}
|
tagIcon={Phone}
|
||||||
@@ -502,7 +519,7 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer" className="relative z-10">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
@@ -543,4 +560,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user