Update src/app/page.tsx

This commit is contained in:
2026-03-03 02:05:44 +00:00
parent 4baa92db62
commit e5a3ab0cfb

View File

@@ -13,11 +13,11 @@ import { Sparkles, Layers, RotateCcw, Mail, Star } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
{ name: "Shop", id: "shop" }, { name: "Shop", id: "/shop" },
{ name: "Sets", id: "sets" }, { name: "Sets", id: "/shop/sets" },
{ name: "Hoodies", id: "hoodies" }, { name: "Hoodies", id: "/shop/hoodies" },
{ name: "Sweatpants", id: "sweatpants" }, { name: "Sweatpants", id: "/shop/sweatpants" },
{ name: "About", id: "about" }, { name: "About", id: "/about" },
]; ];
const footerColumns = [ const footerColumns = [
@@ -64,7 +64,7 @@ export default function HomePage() {
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
brandName="ARCT Amsterdam" brandName="ARCT Amsterdam"
navItems={navItems} navItems={navItems}
button={{ text: "Cart", href: "#" }} button={{ text: "Cart", href: "/shop" }}
animateOnLoad={true} animateOnLoad={true}
/> />
</div> </div>
@@ -118,13 +118,13 @@ export default function HomePage() {
tagAnimation="slide-up" tagAnimation="slide-up"
products={[ products={[
{ {
id: "hoodie-grey", name: "Heavyweight Hoodie — Heather Grey", price: "€149", imageSrc: "http://img.b2bpic.net/free-photo/man-carrying-laptop-lake_23-2148573104.jpg?_wi=1", imageAlt: "ARCT Heavyweight Hoodie in Heather 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?_wi=1", imageAlt: "ARCT Heavyweight Hoodie in Heather Grey", onProductClick: () => window.location.href = "/shop/hoodies"},
{ {
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?_wi=1", imageAlt: "ARCT Heavyweight Hoodie in Deep 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?_wi=1", imageAlt: "ARCT Heavyweight Hoodie in Deep Navy", onProductClick: () => window.location.href = "/shop/hoodies"},
{ {
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?_wi=1", imageAlt: "ARCT Heavyweight Sweatpants in Heather 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?_wi=1", imageAlt: "ARCT Heavyweight Sweatpants in Heather Grey", onProductClick: () => window.location.href = "/shop/sweatpants"},
{ {
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?_wi=1", imageAlt: "ARCT Heavyweight Sweatpants in Deep 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?_wi=1", imageAlt: "ARCT Heavyweight Sweatpants in Deep Navy", onProductClick: () => window.location.href = "/shop/sweatpants"},
]} ]}
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
animationType="slide-up" animationType="slide-up"