Update src/app/shop/page.tsx
This commit is contained in:
@@ -55,13 +55,12 @@ export default function ShopPage() {
|
|||||||
<div id="navbar" data-section="navbar">
|
<div id="navbar" data-section="navbar">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{ name: "Home", id: "/" },
|
||||||
{"name":"Shop","id":"/shop"}
|
{ name: "Shop", id: "/shop" }
|
||||||
]}
|
]}
|
||||||
brandName="StartupHub"
|
brandName="StartupHub"
|
||||||
bottomLeftText="Empowering Innovation"
|
bottomLeftText="Empowering Innovation"
|
||||||
bottomRightText="hello@startuphub.io"
|
bottomRightText="hello@startuphub.io"
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<main className="min-h-screen flex items-center justify-center pt-20">
|
<main className="min-h-screen flex items-center justify-center pt-20">
|
||||||
@@ -89,14 +88,13 @@ export default function ShopPage() {
|
|||||||
<div id="navbar" data-section="navbar">
|
<div id="navbar" data-section="navbar">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{"name":"Home","id":"/"},
|
{ name: "Home", id: "/" },
|
||||||
{"name":"Shop","id":"/shop"},
|
{ name: "Shop", id: "/shop" },
|
||||||
{"name":"Contact","id":"/contacts"}
|
{ name: "Contact", id: "/contacts" }
|
||||||
]}
|
]}
|
||||||
brandName="StartupHub"
|
brandName="StartupHub"
|
||||||
bottomLeftText="Empowering Innovation"
|
bottomLeftText="Empowering Innovation"
|
||||||
bottomRightText="hello@startuphub.io"
|
bottomRightText="hello@startuphub.io"
|
||||||
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="product-catalog" data-section="product-catalog">
|
<div id="product-catalog" data-section="product-catalog">
|
||||||
@@ -120,18 +118,39 @@ export default function ShopPage() {
|
|||||||
total={`$${cartTotal}`}
|
total={`$${cartTotal}`}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
|
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout
|
||||||
},
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{"title":"Product","items":[{"label":"Features","href":"features"},{"label":"Security","href":"security"},{"label":"Pricing","href":"pricing"},{"label":"Updates","href":"updates"}]},
|
{
|
||||||
{"title":"Company","items":[{"label":"About Us","href":"about"},{"label":"Blog","href":"blog"},{"label":"Careers","href":"careers"},{"label":"Press","href":"press"}]},
|
title: "Product", items: [
|
||||||
{"title":"Resources","items":[{"label":"Documentation","href":"docs"},{"label":"API Reference","href":"api"},{"label":"Community","href":"community"},{"label":"Support","href":"support"}]}
|
{ label: "Features", href: "features" },
|
||||||
]
|
{ label: "Security", href: "security" },
|
||||||
|
{ label: "Pricing", href: "pricing" },
|
||||||
|
{ label: "Updates", href: "updates" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About Us", href: "about" },
|
||||||
|
{ label: "Blog", href: "blog" },
|
||||||
|
{ label: "Careers", href: "careers" },
|
||||||
|
{ label: "Press", href: "press" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Resources", items: [
|
||||||
|
{ label: "Documentation", href: "docs" },
|
||||||
|
{ label: "API Reference", href: "api" },
|
||||||
|
{ label: "Community", href: "community" },
|
||||||
|
{ label: "Support", href: "support" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
copyrightText="© 2025 StartupHub. All rights reserved."
|
copyrightText="© 2025 StartupHub. All rights reserved."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user