Update src/app/page.tsx
This commit is contained in:
@@ -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" }
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user