Merge version_1 into main #2

Merged
bender merged 5 commits from version_1 into main 2026-03-02 20:07:43 +00:00
5 changed files with 36 additions and 145 deletions

View File

@@ -20,8 +20,7 @@ export default function AboutPage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Hoodies", href: "/shop/hoodies" },
{ label: "Sweatpants", href: "/shop/sweatpants" },
{ label: "Sets", href: "/shop/sets" },
@@ -29,8 +28,7 @@ export default function AboutPage() {
],
},
{
title: "Information",
items: [
title: "Information", items: [
{ label: "About ARCT", href: "/about" },
{ label: "Craft & Materials", href: "/craft-materials" },
{ label: "Sustainability", href: "/sustainability" },
@@ -38,8 +36,7 @@ export default function AboutPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Shipping & Returns", href: "/shipping-returns" },
{ label: "Contact", href: "/contact" },
{ label: "Size Guide", href: "#" },
@@ -89,25 +86,13 @@ export default function AboutPage() {
description="What drives every decision at ARCT."
metrics={[
{
id: "1",
value: "100%",
title: "Craftsmanship",
description: "Every stitch matters. We focus on precise embroidery and clean finishing.",
icon: Award,
id: "1", value: "100%", title: "Craftsmanship", description: "Every stitch matters. We focus on precise embroidery and clean finishing.", icon: Award,
},
{
id: "2",
value: "Zero",
title: "Compromise",
description: "Minimal branding, maximal quality. We let the fabric do the talking.",
icon: Zap,
id: "2", value: "Zero", title: "Compromise", description: "Minimal branding, maximal quality. We let the fabric do the talking.", icon: Zap,
},
{
id: "3",
value: "Full",
title: "Transparency",
description: "Simple returns, clear shipping, no hidden terms. We respect your trust.",
icon: Eye,
id: "3", value: "Full", title: "Transparency", description: "Simple returns, clear shipping, no hidden terms. We respect your trust.", icon: Eye,
},
]}
gridVariant="uniform-all-items-equal"

View File

@@ -20,8 +20,7 @@ export default function ContactPage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Hoodies", href: "/shop/hoodies" },
{ label: "Sweatpants", href: "/shop/sweatpants" },
{ label: "Sets", href: "/shop/sets" },
@@ -29,8 +28,7 @@ export default function ContactPage() {
],
},
{
title: "Information",
items: [
title: "Information", items: [
{ label: "About ARCT", href: "/about" },
{ label: "Craft & Materials", href: "/craft-materials" },
{ label: "Sustainability", href: "/sustainability" },
@@ -38,8 +36,7 @@ export default function ContactPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Shipping & Returns", href: "/shipping-returns" },
{ label: "Contact", href: "/contact" },
{ label: "Size Guide", href: "#" },
@@ -89,25 +86,13 @@ export default function ContactPage() {
description="Multiple ways to reach our support team."
metrics={[
{
id: "1",
value: "24",
title: "Hour Response",
description: "Email us and we'll respond within one business day.",
icon: Mail,
id: "1", value: "24", title: "Hour Response", description: "Email us and we'll respond within one business day.", icon: Mail,
},
{
id: "2",
value: "Live",
title: "Support",
description: "Chat with our team during business hours (MonFri, 9am5pm CET).",
icon: MessageCircle,
id: "2", value: "Live", title: "Support", description: "Chat with our team during business hours (MonFri, 9am5pm CET).", icon: MessageCircle,
},
{
id: "3",
value: "Direct",
title: "Line",
description: "Call us for urgent inquiries. Phone support available during business hours.",
icon: Phone,
id: "3", value: "Direct", title: "Line", description: "Call us for urgent inquiries. Phone support available during business hours.", icon: Phone,
},
]}
gridVariant="uniform-all-items-equal"

View File

@@ -5,25 +5,14 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ARCT Amsterdam | Heavyweight essentials, quietly designed",
description: "Premium heavyweight hoodies and sweatpants from Amsterdam. Minimal embroidery, structured cotton fleece, built to last.",
keywords: "heavyweight hoodie, premium sweatpants, minimalist streetwear, Amsterdam fashion, cotton fleece",
openGraph: {
title: "ARCT Amsterdam | Heavyweight essentials, quietly designed",
description: "Premium heavyweight hoodies and sweatpants from Amsterdam. Minimal embroidery, structured cotton fleece, built to last.",
siteName: "ARCT Amsterdam",
type: "website",
},
title: "ARCT Amsterdam | Heavyweight essentials, quietly designed", description: "Premium heavyweight hoodies and sweatpants from Amsterdam. Minimal embroidery, structured cotton fleece, built to last.", keywords: "heavyweight hoodie, premium sweatpants, minimalist streetwear, Amsterdam fashion, cotton fleece", openGraph: {
title: "ARCT Amsterdam | Heavyweight essentials, quietly designed", description: "Premium heavyweight hoodies and sweatpants from Amsterdam. Minimal embroidery, structured cotton fleece, built to last.", siteName: "ARCT Amsterdam", type: "website"},
twitter: {
card: "summary_large_image",
title: "ARCT Amsterdam | Heavyweight essentials",
description: "Premium heavyweight hoodies and sweatpants, built to last.",
},
card: "summary_large_image", title: "ARCT Amsterdam | Heavyweight essentials", description: "Premium heavyweight hoodies and sweatpants, built to last."},
};
export default function RootLayout({

View File

@@ -9,7 +9,7 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBase from "@/components/sections/footer/FooterBase";
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() {
const navItems = [
@@ -22,8 +22,7 @@ export default function HomePage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Hoodies", href: "/shop/hoodies" },
{ label: "Sweatpants", href: "/shop/sweatpants" },
{ label: "Sets", href: "/shop/sets" },
@@ -31,8 +30,7 @@ export default function HomePage() {
],
},
{
title: "Information",
items: [
title: "Information", items: [
{ label: "About ARCT", href: "/about" },
{ label: "Craft & Materials", href: "/craft-materials" },
{ label: "Sustainability", href: "/sustainability" },
@@ -40,8 +38,7 @@ export default function HomePage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Shipping & Returns", href: "/shipping-returns" },
{ label: "Contact", href: "/contact" },
{ label: "Size Guide", href: "#" },
@@ -95,25 +92,13 @@ export default function HomePage() {
description="What sets us apart."
metrics={[
{
id: "1",
value: "700",
title: "GSM",
description: "Dense fleece, structured drape, premium handfeel.",
icon: Layers,
id: "1", value: "700", title: "GSM", description: "Dense fleece, structured drape, premium handfeel.", icon: Layers,
},
{
id: "2",
value: "100%",
title: "Embroidered",
description: "Clean stitchwork, minimal placement, designed to last.",
icon: Needle,
id: "2", value: "100%", title: "Embroidered", description: "Clean stitchwork, minimal placement, designed to last.", icon: Sparkles,
},
{
id: "3",
value: "14",
title: "Day Returns",
description: "Clear policies, fast support, no friction.",
icon: RotateCcw,
id: "3", value: "14", title: "Day Returns", description: "Clear policies, fast support, no friction.", icon: RotateCcw,
},
]}
gridVariant="uniform-all-items-equal"
@@ -130,33 +115,13 @@ export default function HomePage() {
description="Explore our core essentials, crafted for everyday wear."
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", imageAlt: "ARCT Heavyweight Hoodie in Heather Grey"},
{
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", imageAlt: "ARCT Heavyweight Hoodie in Deep Navy"},
{
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", imageAlt: "ARCT Heavyweight Sweatpants in Heather Grey"},
{
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", imageAlt: "ARCT Heavyweight Sweatpants in Deep Navy"},
]}
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"

View File

@@ -20,8 +20,7 @@ export default function ShopPage() {
const footerColumns = [
{
title: "Shop",
items: [
title: "Shop", items: [
{ label: "Hoodies", href: "/shop/hoodies" },
{ label: "Sweatpants", href: "/shop/sweatpants" },
{ label: "Sets", href: "/shop/sets" },
@@ -29,8 +28,7 @@ export default function ShopPage() {
],
},
{
title: "Information",
items: [
title: "Information", items: [
{ label: "About ARCT", href: "/about" },
{ label: "Craft & Materials", href: "/craft-materials" },
{ label: "Sustainability", href: "/sustainability" },
@@ -38,8 +36,7 @@ export default function ShopPage() {
],
},
{
title: "Support",
items: [
title: "Support", items: [
{ label: "Shipping & Returns", href: "/shipping-returns" },
{ label: "Contact", href: "/contact" },
{ label: "Size Guide", href: "#" },
@@ -89,47 +86,17 @@ export default function ShopPage() {
description="Our complete range of heavyweight hoodies, sweatpants, and coordinated sets."
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=2",
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", imageAlt: "ARCT Heavyweight Hoodie in Heather Grey"},
{
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=2",
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", imageAlt: "ARCT Heavyweight Hoodie in Deep Navy"},
{
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",
},
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"},
{
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=2",
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", imageAlt: "ARCT Heavyweight Sweatpants in Heather Grey"},
{
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=2",
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", imageAlt: "ARCT Heavyweight Sweatpants in Deep Navy"},
{
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",
},
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"},
]}
gridVariant="bento-grid"
animationType="slide-up"