Update src/app/page.tsx

This commit is contained in:
2026-01-22 10:47:55 +00:00
parent df6198b81d
commit 4aa17e0d3f

View File

@@ -29,13 +29,13 @@ export default function HomePage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Arrangements", id: "/arrangements" }, { name: "Arrangements", id: "arrangements" },
{ name: "About", id: "/about" }, { name: "About", id: "about" },
{ name: "Contact", id: "/contact" } { name: "Contact", id: "contact" }
]} ]}
brandName="Lavanda" brandName="Lavanda"
button={{ button={{
text: "Order Now", href: "#" text: "Order Now", href: "#contact"
}} }}
/> />
</div> </div>
@@ -46,8 +46,8 @@ export default function HomePage() {
description="Handcrafted floral arrangements for every moment. From elegant celebrations to intimate gatherings, our bespoke bouquets bring nature's beauty to life." description="Handcrafted floral arrangements for every moment. From elegant celebrations to intimate gatherings, our bespoke bouquets bring nature's beauty to life."
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
buttons={[ buttons={[
{ text: "Explore Collection", href: "/arrangements" }, { text: "Explore Collection", href: "#arrangements" },
{ text: "Learn More", href: "/about" } { text: "Learn More", href: "#about" }
]} ]}
layoutOrder="default" layoutOrder="default"
imageSrc="https://img.b2bpic.net/free-photo/beautiful-arrangement-flowers-birthday-girl_23-2149077362.jpg" imageSrc="https://img.b2bpic.net/free-photo/beautiful-arrangement-flowers-birthday-girl_23-2149077362.jpg"
@@ -157,8 +157,8 @@ export default function HomePage() {
text="Ready to bring beauty into your life? Get in touch with Lavanda today to discuss your floral vision." text="Ready to bring beauty into your life? Get in touch with Lavanda today to discuss your floral vision."
animationType="entrance-slide" animationType="entrance-slide"
buttons={[ buttons={[
{ text: "Schedule Consultation", href: "#" }, { text: "Schedule Consultation", href: "#contact" },
{ text: "View Portfolio", href: "#" } { text: "View Portfolio", href: "#arrangements" }
]} ]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
@@ -172,15 +172,15 @@ export default function HomePage() {
{ {
title: "Shop", items: [ title: "Shop", items: [
{ label: "Arrangements", href: "arrangements" }, { label: "Arrangements", href: "arrangements" },
{ label: "Seasonal Collections", href: "#" }, { label: "Seasonal Collections", href: "#arrangements" },
{ label: "Custom Orders", href: "#" } { label: "Custom Orders", href: "#contact" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "about" },
{ label: "Contact", href: "contact" }, { label: "Contact", href: "contact" },
{ label: "Delivery Info", href: "#" } { label: "Delivery Info", href: "#contact" }
] ]
}, },
{ {