Update src/app/shop/page.tsx

This commit is contained in:
2026-02-20 21:56:25 +00:00
parent b83697c236
commit 3606fab604

View File

@@ -61,7 +61,10 @@ export default function ShopPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -113,7 +116,10 @@ export default function ShopPage() {
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features-detailed" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Pro Studio"
className="bg-card/90 backdrop-blur-sm shadow-lg"
@@ -168,4 +174,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}