Update src/app/page.tsx

This commit is contained in:
2026-04-20 11:07:29 +00:00
parent b30d790971
commit 61f5778f2a

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "hero" },
{ name: "Collection", id: "products" },
{ name: "Collection", id: "/products" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -47,7 +47,7 @@ export default function LandingPage() {
title="Timeless Style, Consciously Crafted."
description="Discover our latest collection of premium, sustainably made essentials designed for the modern lifestyle. Quality meets comfort in every stitch."
buttons={[
{ text: "Shop Collection", href: "#products" },
{ text: "Shop Collection", href: "/products" },
]}
imageSrc="http://img.b2bpic.net/free-photo/people-enjoy-shopping_53876-20708.jpg"
/>
@@ -111,6 +111,7 @@ export default function LandingPage() {
]}
title="Latest Collection"
description="Explore our seasonal curation of staples and statement pieces."
buttons={[{ text: "View All Products", href: "/products" }]}
/>
</div>
@@ -174,7 +175,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
columns={[
{ title: "Shop", items: [{ label: "New Arrivals", href: "#products" }, { label: "Essentials", href: "#products" }] },
{ title: "Shop", items: [{ label: "New Arrivals", href: "/products" }, { label: "Essentials", href: "/products" }] },
{ title: "Brand", items: [{ label: "Our Story", href: "#" }, { label: "Sustainability", href: "#" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#" }, { label: "Contact", href: "#" }] },
]}