Update src/app/page.tsx

This commit is contained in:
2026-01-29 15:08:37 +00:00
parent b8551da6b3
commit b81b043a1b

View File

@@ -31,6 +31,7 @@ export default function LandingPage() {
navItems={[
{name: "Home", id: "hero"},
{name: "Products", id: "products"},
{name: "Shop", id: "/shop"},
{name: "About", id: "about"},
{name: "Testimonials", id: "testimonials"},
{name: "Contact", id: "contact"}
@@ -47,7 +48,7 @@ export default function LandingPage() {
description="Discover the beauty of fresh, handcrafted floral arrangements. From elegant roses to vibrant sunflowers, we bring nature's finest blooms to your doorstep with care and passion."
background={{ variant: "radial-gradient" }}
buttons={[
{ text: "Shop Now", href: "#products" },
{ text: "Shop Now", href: "/shop" },
{ text: "Learn More", href: "#about" }
]}
layoutOrder="default"
@@ -234,7 +235,7 @@ export default function LandingPage() {
columns={[
{
title: "Shop", items: [
{ label: "All Arrangements", href: "#products" },
{ label: "All Arrangements", href: "/shop" },
{ label: "Collections", href: "#feature" },
{ label: "Custom Orders", href: "#contact" }
]
@@ -260,4 +261,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}