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