Update src/app/shop/[id]/page.tsx

This commit is contained in:
2026-02-20 17:06:51 +00:00
parent b4ee464f0f
commit 7c814f2afa

View File

@@ -67,7 +67,16 @@ export default function ProductPage({ params }: ProductPageProps) {
}, [cartItems, checkout, getCheckoutItems]);
const navbarProps = {
navItems: [{ "name": "Home", "id": "/" }, { "name": "Shop", "id": "/shop" }],
navItems: [
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Stats", id: "/#stats" },
{ name: "Trust", id: "/#social-proof" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
],
brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg"};
const footerProps = {