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

This commit is contained in:
2026-02-21 19:52:45 +00:00
parent 913d0a70ec
commit 028fc2b7f4

View File

@@ -91,7 +91,13 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Features", id: "/#features" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -105,7 +111,11 @@ function ProductPageContent({ params }: ProductPageProps) {
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=7"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[{ "title": "Product", "items": [{ "label": "Features", "href": "#features" }, { "label": "Pricing", "href": "#pricing" }] }, { "title": "Company", "items": [{ "label": "About Us", "href": "#about" }, { "label": "Careers", "href": "/careers" }] }, { "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "#faq" }] }]}
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."
/>
@@ -132,7 +142,13 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Features", id: "/#features" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -154,7 +170,11 @@ function ProductPageContent({ params }: ProductPageProps) {
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=8"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[{ "title": "Product", "items": [{ "label": "Features", "href": "#features" }, { "label": "Pricing", "href": "#pricing" }] }, { "title": "Company", "items": [{ "label": "About Us", "href": "#about" }, { "label": "Careers", "href": "/careers" }] }, { "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "#faq" }] }]}
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."
/>
@@ -180,7 +200,13 @@ function ProductPageContent({ params }: ProductPageProps) {
<ReactLenis root>
<div id="navbar" data-section="navbar">
<NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]}
navItems={[
{ name: "Features", id: "/#features" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "/#contact" }
]}
brandName="NoteGenius AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
@@ -202,7 +228,7 @@ function ProductPageContent({ params }: ProductPageProps) {
sku={meta.sku}
buttons={[
{ text: "Add To Cart", onClick: handleAddToCart },
{ text: "Buy Now", onClick: handleBuyNow },
{ text: "Buy Now", onClick: handleBuyNow }
]}
/>
</div>
@@ -225,7 +251,11 @@ function ProductPageContent({ params }: ProductPageProps) {
<FooterMedia
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-clean-modern-ai-notetaking-dashboard-i-1771701006792-1be35ae6.png?_wi=9"
imageAlt="NoteGenius AI Dashboard Footer"
columns={[{ "title": "Product", "items": [{ "label": "Features", "href": "#features" }, { "label": "Pricing", "href": "#pricing" }] }, { "title": "Company", "items": [{ "label": "About Us", "href": "#about" }, { "label": "Careers", "href": "/careers" }] }, { "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "#faq" }] }]}
columns={[
{ "title": "Product", "items": [{ "label": "Features", "href": "/#features" }, { "label": "Pricing", "href": "/#pricing" }] },
{ "title": "Company", "items": [{ "label": "About Us", "href": "/#about" }] },
{ "title": "Resources", "items": [{ "label": "Blog", "href": "/blog" }, { "label": "Support", "href": "/#faq" }] }
]}
logoText="NoteGenius AI"
copyrightText="© 2024 NoteGenius AI. All rights reserved."
/>