Update src/app/page.tsx

This commit is contained in:
2026-01-13 13:07:55 +00:00
parent 1b286b7e5b
commit 8697791dfd

View File

@@ -29,15 +29,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<<NavbarLayoutFloatingOverlay <<NavbarLayoutFloatingOverlay
brandName="Hello Kvitka" brandName="Hello Kvitka"
navItems={[ links={[
{ name: "About", id: "about" }, { label: "About", href: "about" },
{ name: "Products", id: "products" }, { label: "Products", href: "products" },
{ name: "Why Us", id: "features" }, { label: "Why Us", href: "features" },
{ name: "Reviews", id: "testimonials" }, { label: "Reviews", href: "testimonials" },
{ name: "FAQ", id: "faq" } { label: "FAQ", href: "faq" }
]} ]}
button={{ button={{
text: "Order Now", href: "#contact" text: "Order Now", href: "contact"
}} }}
/> />
</div> </div>
@@ -47,8 +47,8 @@ export default function LandingPage() {
logoText="Hello Kvitka" logoText="Hello Kvitka"
description="Discover the freshest, most beautiful flower arrangements crafted with love. Perfect for every occasion—birthdays, weddings, anniversaries, and more." description="Discover the freshest, most beautiful flower arrangements crafted with love. Perfect for every occasion—birthdays, weddings, anniversaries, and more."
buttons={[ buttons={[
{ text: "Shop Now", href: "#products" }, { text: "Shop Now", href: "products" },
{ text: "Learn More", href: "#about" } { text: "Learn More", href: "about" }
]} ]}
layoutOrder="default" layoutOrder="default"
imageSrc="https://img.b2bpic.net/free-photo/still-life-with-bouquet-blue-pink-wildflowers-vase_169016-58261.jpg" imageSrc="https://img.b2bpic.net/free-photo/still-life-with-bouquet-blue-pink-wildflowers-vase_169016-58261.jpg"
@@ -218,26 +218,26 @@ export default function LandingPage() {
columns={[ columns={[
{ {
title: "Shop", items: [ title: "Shop", items: [
{ label: "All Flowers", href: "#products" }, { label: "All Flowers", href: "products" },
{ label: "Custom Orders", href: "#contact" }, { label: "Custom Orders", href: "contact" },
{ label: "Seasonal", href: "#products" }, { label: "Seasonal", href: "products" },
{ label: "Gift Packages", href: "#products" } { label: "Gift Packages", href: "products" }
] ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
{ label: "About Us", href: "#about" }, { label: "About Us", href: "about" },
{ label: "Our Team", href: "#about" }, { label: "Our Team", href: "about" },
{ label: "Reviews", href: "#testimonials" }, { label: "Reviews", href: "testimonials" },
{ label: "Blog", href: "#" } { label: "Blog", href: "#" }
] ]
}, },
{ {
title: "Support", items: [ title: "Support", items: [
{ label: "FAQ", href: "#faq" }, { label: "FAQ", href: "faq" },
{ label: "Delivery Info", href: "#contact" }, { label: "Delivery Info", href: "contact" },
{ label: "Care Guide", href: "#" }, { label: "Care Guide", href: "#" },
{ label: "Contact", href: "#contact" } { label: "Contact", href: "contact" }
] ]
}, },
{ {