Update src/app/shop/page.tsx

This commit is contained in:
2026-02-21 23:32:14 +00:00
parent 673cc61214
commit 669eb20912

View File

@@ -37,7 +37,7 @@ function ShopPageContent() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
@@ -87,7 +87,7 @@ function ShopPageContent() {
navItems={[ navItems={[
{ name: "Home", id: "/" }, { name: "Home", id: "/" },
{ name: "Features", id: "/#features" }, { name: "Features", id: "/#features" },
{ name: "Products", id: "/#products" },
{ name: "Testimonials", id: "/#testimonials" }, { name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" } { name: "Contact", id: "/#contact" }
]} ]}
@@ -130,4 +130,4 @@ export default function ShopPage() {
<ShopPageContent /> <ShopPageContent />
</Suspense> </Suspense>
); );
} }