Update src/app/page.tsx

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

View File

@@ -9,7 +9,7 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp
import ContactCenter from "@/components/sections/contact/ContactCenter"; import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBase from "@/components/sections/footer/FooterBase"; import FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link"; import Link from "next/link";
import { Sparkles, Layers, Needle, RotateCcw, Mail } from "lucide-react"; import { Sparkles, Layers, RotateCcw, Mail } from "lucide-react";
export default function HomePage() { export default function HomePage() {
const navItems = [ const navItems = [
@@ -22,8 +22,7 @@ export default function HomePage() {
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" },
@@ -31,8 +30,7 @@ export default function HomePage() {
], ],
}, },
{ {
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" },
@@ -40,8 +38,7 @@ export default function HomePage() {
], ],
}, },
{ {
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: "#" },
@@ -95,25 +92,13 @@ export default function HomePage() {
description="What sets us apart." description="What sets us apart."
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "700", title: "GSM", description: "Dense fleece, structured drape, premium handfeel.", icon: Layers,
value: "700",
title: "GSM",
description: "Dense fleece, structured drape, premium handfeel.",
icon: Layers,
}, },
{ {
id: "2", id: "2", value: "100%", title: "Embroidered", description: "Clean stitchwork, minimal placement, designed to last.", icon: Sparkles,
value: "100%",
title: "Embroidered",
description: "Clean stitchwork, minimal placement, designed to last.",
icon: Needle,
}, },
{ {
id: "3", id: "3", value: "14", title: "Day Returns", description: "Clear policies, fast support, no friction.", icon: RotateCcw,
value: "14",
title: "Day Returns",
description: "Clear policies, fast support, no friction.",
icon: RotateCcw,
}, },
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -130,33 +115,13 @@ export default function HomePage() {
description="Explore our core essentials, crafted for everyday wear." description="Explore our core essentials, crafted for everyday wear."
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=1",
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=1",
imageAlt: "ARCT Heavyweight Hoodie in Deep Navy",
},
{ {
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=1",
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=1",
imageAlt: "ARCT Heavyweight Sweatpants in Deep Navy",
},
]} ]}
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
animationType="slide-up" animationType="slide-up"