Update src/app/shop/page.tsx

This commit is contained in:
2026-03-02 20:07:38 +00:00
parent 3c533f52d2
commit f5f9b74994

View File

@@ -20,8 +20,7 @@ export default function ShopPage() {
const footerColumns = [ const footerColumns = [
{ {
title: "Shop", title: "Shop", items: [
items: [
{ label: "Hoodies", href: "/shop/hoodies" }, { label: "Hoodies", href: "/shop/hoodies" },
{ label: "Sweatpants", href: "/shop/sweatpants" }, { label: "Sweatpants", href: "/shop/sweatpants" },
{ label: "Sets", href: "/shop/sets" }, { label: "Sets", href: "/shop/sets" },
@@ -29,8 +28,7 @@ export default function ShopPage() {
], ],
}, },
{ {
title: "Information", title: "Information", items: [
items: [
{ label: "About ARCT", href: "/about" }, { label: "About ARCT", href: "/about" },
{ label: "Craft & Materials", href: "/craft-materials" }, { label: "Craft & Materials", href: "/craft-materials" },
{ label: "Sustainability", href: "/sustainability" }, { label: "Sustainability", href: "/sustainability" },
@@ -38,8 +36,7 @@ export default function ShopPage() {
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ label: "Shipping & Returns", href: "/shipping-returns" }, { label: "Shipping & Returns", href: "/shipping-returns" },
{ label: "Contact", href: "/contact" }, { label: "Contact", href: "/contact" },
{ label: "Size Guide", href: "#" }, { label: "Size Guide", href: "#" },
@@ -89,47 +86,17 @@ export default function ShopPage() {
description="Our complete range of heavyweight hoodies, sweatpants, and coordinated sets." description="Our complete range of heavyweight hoodies, sweatpants, and coordinated sets."
products={[ products={[
{ {
id: "hoodie-grey", id: "hoodie-grey", name: "Heavyweight Hoodie — Heather Grey", price: "€149", imageSrc: "http://img.b2bpic.net/free-photo/man-carrying-laptop-lake_23-2148573104.jpg", imageAlt: "ARCT Heavyweight Hoodie in Heather Grey"},
name: "Heavyweight Hoodie — Heather Grey",
price: "€149",
imageSrc: "http://img.b2bpic.net/free-photo/man-carrying-laptop-lake_23-2148573104.jpg?_wi=2",
imageAlt: "ARCT Heavyweight Hoodie in Heather Grey",
},
{ {
id: "hoodie-navy", id: "hoodie-navy", name: "Heavyweight Hoodie — Deep Navy", price: "€149", imageSrc: "http://img.b2bpic.net/free-photo/man-isolated-showing-emotions-end-gestures_1303-30107.jpg", imageAlt: "ARCT Heavyweight Hoodie in Deep Navy"},
name: "Heavyweight Hoodie — Deep Navy",
price: "€149",
imageSrc: "http://img.b2bpic.net/free-photo/man-isolated-showing-emotions-end-gestures_1303-30107.jpg?_wi=2",
imageAlt: "ARCT Heavyweight Hoodie in Deep Navy",
},
{ {
id: "hoodie-brown", id: "hoodie-brown", name: "Heavyweight Hoodie — Warm Brown", price: "€149", imageSrc: "http://img.b2bpic.net/free-photo/young-person-wearing-hoodie-mockup_23-2149246150.jpg", imageAlt: "ARCT Heavyweight Hoodie in Warm Brown"},
name: "Heavyweight Hoodie — Warm Brown",
price: "€149",
imageSrc: "http://img.b2bpic.net/free-photo/young-person-wearing-hoodie-mockup_23-2149246150.jpg",
imageAlt: "ARCT Heavyweight Hoodie in Warm Brown",
},
{ {
id: "sweatpants-grey", id: "sweatpants-grey", name: "Heavyweight Sweatpants — Heather Grey", price: "€129", imageSrc: "http://img.b2bpic.net/free-photo/full-view-male-man-street-look-camera_197531-33432.jpg", imageAlt: "ARCT Heavyweight Sweatpants in Heather Grey"},
name: "Heavyweight Sweatpants — Heather Grey",
price: "€129",
imageSrc: "http://img.b2bpic.net/free-photo/full-view-male-man-street-look-camera_197531-33432.jpg?_wi=2",
imageAlt: "ARCT Heavyweight Sweatpants in Heather Grey",
},
{ {
id: "sweatpants-navy", id: "sweatpants-navy", name: "Heavyweight Sweatpants — Deep Navy", price: "€129", imageSrc: "http://img.b2bpic.net/free-photo/man-casual-outfits-going-up-stairs_114579-11469.jpg", imageAlt: "ARCT Heavyweight Sweatpants in Deep Navy"},
name: "Heavyweight Sweatpants — Deep Navy",
price: "€129",
imageSrc: "http://img.b2bpic.net/free-photo/man-casual-outfits-going-up-stairs_114579-11469.jpg?_wi=2",
imageAlt: "ARCT Heavyweight Sweatpants in Deep Navy",
},
{ {
id: "sweatpants-brown", id: "sweatpants-brown", name: "Heavyweight Sweatpants — Warm Brown", price: "€129", imageSrc: "http://img.b2bpic.net/free-photo/full-length-shot-sportive-curly-haired-woman-activewear-carries-karemat-being-good-physical-shape-leads-healthy-lifestyle-poses-outdoors_273609-55464.jpg", imageAlt: "ARCT Heavyweight Sweatpants in Warm Brown"},
name: "Heavyweight Sweatpants — Warm Brown",
price: "€129",
imageSrc: "http://img.b2bpic.net/free-photo/full-length-shot-sportive-curly-haired-woman-activewear-carries-karemat-being-good-physical-shape-leads-healthy-lifestyle-poses-outdoors_273609-55464.jpg",
imageAlt: "ARCT Heavyweight Sweatpants in Warm Brown",
},
]} ]}
gridVariant="bento-grid" gridVariant="bento-grid"
animationType="slide-up" animationType="slide-up"