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">
<<NavbarLayoutFloatingOverlay
brandName="Hello Kvitka"
navItems={[
{ name: "About", id: "about" },
{ name: "Products", id: "products" },
{ name: "Why Us", id: "features" },
{ name: "Reviews", id: "testimonials" },
{ name: "FAQ", id: "faq" }
links={[
{ label: "About", href: "about" },
{ label: "Products", href: "products" },
{ label: "Why Us", href: "features" },
{ label: "Reviews", href: "testimonials" },
{ label: "FAQ", href: "faq" }
]}
button={{
text: "Order Now", href: "#contact"
text: "Order Now", href: "contact"
}}
/>
</div>
@@ -47,8 +47,8 @@ export default function LandingPage() {
logoText="Hello Kvitka"
description="Discover the freshest, most beautiful flower arrangements crafted with love. Perfect for every occasion—birthdays, weddings, anniversaries, and more."
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Learn More", href: "#about" }
{ text: "Shop Now", href: "products" },
{ text: "Learn More", href: "about" }
]}
layoutOrder="default"
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={[
{
title: "Shop", items: [
{ label: "All Flowers", href: "#products" },
{ label: "Custom Orders", href: "#contact" },
{ label: "Seasonal", href: "#products" },
{ label: "Gift Packages", href: "#products" }
{ label: "All Flowers", href: "products" },
{ label: "Custom Orders", href: "contact" },
{ label: "Seasonal", href: "products" },
{ label: "Gift Packages", href: "products" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Team", href: "#about" },
{ label: "Reviews", href: "#testimonials" },
{ label: "About Us", href: "about" },
{ label: "Our Team", href: "about" },
{ label: "Reviews", href: "testimonials" },
{ label: "Blog", href: "#" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Delivery Info", href: "#contact" },
{ label: "FAQ", href: "faq" },
{ label: "Delivery Info", href: "contact" },
{ label: "Care Guide", href: "#" },
{ label: "Contact", href: "#contact" }
{ label: "Contact", href: "contact" }
]
},
{