Merge version_2 into main #1

Merged
development merged 3 commits from version_2 into main 2026-02-09 14:11:35 +00:00
Showing only changes of commit 48ed71d7c8 - Show all commits

View File

@@ -55,13 +55,12 @@ export default function ShopPage() {
<div id="navbar" data-section="navbar">
<NavbarStyleFullscreen
navItems={[
{"name":"Home","id":"/"},
{"name":"Shop","id":"/shop"}
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
]}
brandName="StartupHub"
bottomLeftText="Empowering Innovation"
bottomRightText="hello@startuphub.io"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<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">
<NavbarStyleFullscreen
navItems={[
{"name":"Home","id":"/"},
{"name":"Shop","id":"/shop"},
{"name":"Contact","id":"/contacts"}
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/contacts" }
]}
brandName="StartupHub"
bottomLeftText="Empowering Innovation"
bottomRightText="hello@startuphub.io"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="product-catalog" data-section="product-catalog">
@@ -120,18 +118,39 @@ export default function ShopPage() {
total={`$${cartTotal}`}
buttons={[
{
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
},
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
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":"Resources","items":[{"label":"Documentation","href":"docs"},{"label":"API Reference","href":"api"},{"label":"Community","href":"community"},{"label":"Support","href":"support"}]}
]
{
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: "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."
/>
</div>