Update src/app/page.tsx

This commit is contained in:
2026-03-03 13:19:29 +00:00
parent bed16d44f4
commit 235011af82

View File

@@ -30,12 +30,12 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "Products", id: "products" },
{ name: "Products", id: "/products" },
{ name: "About", id: "about" },
{ name: "Benefits", id: "benefits" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Shop Now", href: "products" }}
button={{ text: "Shop Now", href: "/products" }}
brandName="Radiant Skin"
/>
</div>
@@ -45,7 +45,7 @@ export default function LandingPage() {
logoText="Radiant Skin"
description="Discover the power of nature-inspired skincare. Our premium formulations harness the finest natural ingredients to reveal your most radiant, glowing complexion."
buttons={[
{ text: "Explore Products", href: "products" },
{ text: "Explore Products", href: "/products" },
{ text: "Learn More", href: "about" }
]}
background={{ variant: "sparkles-gradient" }}
@@ -186,9 +186,9 @@ export default function LandingPage() {
columns={[
{
title: "Shop", items: [
{ label: "Products", href: "#products" },
{ label: "Bundles", href: "#products" },
{ label: "Best Sellers", href: "#products" }
{ label: "Products", href: "/products" },
{ label: "Bundles", href: "/products" },
{ label: "Best Sellers", href: "/products" }
]
},
{