Update src/app/page.tsx

This commit is contained in:
2026-02-06 14:20:09 +00:00
parent 5fe8484bde
commit ec2305f50b

View File

@@ -30,11 +30,11 @@ export default function TigerCupsPage() {
<NavbarStyleFullscreen
brandName="Tiger"
navItems={[
{ name: "Products", id: "products" },
{ name: "Products", id: "/shop" },
{ name: "About", id: "about" },
{ name: "Collections", id: "collections" },
{ name: "Collections", id: "/shop" },
{ name: "Contact", id: "contact" },
{ name: "Shop", id: "shop" }
{ name: "Shop", id: "/shop" }
]}
bottomLeftText="Premium Cup Collection"
bottomRightText="hello@tigercups.com"
@@ -66,8 +66,8 @@ export default function TigerCupsPage() {
}
]}
buttons={[
{ text: "Shop Now", href: "products" },
{ text: "View Collections", href: "collections" }
{ text: "Shop Now", href: "/shop" },
{ text: "View Collections", href: "/shop" }
]}
/>
</div>