'use client' import Link from 'next/link' import { posthog } from '@/lib/posthog' const products = [ { name: 'Leinen-Kissen «Fjord»', price: '€ 48', desc: 'Sanftes Leinen in gedämpftem Salbei.', badge: 'Neu', bg: 'repeating-linear-gradient(40deg,#F0E8DA,#F0E8DA 11px,#E7DDCC 11px,#E7DDCC 22px)' }, { name: 'Keramik-Tasse «Lykke»', price: '€ 32', desc: 'Handgedreht, jede ein Unikat.', badge: null, bg: 'repeating-linear-gradient(40deg,#EEE6D6,#EEE6D6 11px,#E4D9C7 11px,#E4D9C7 22px)' }, { name: 'Duftkerze «Skog»', price: '€ 26', desc: 'Zeder, Moos und stiller Wald.', badge: null, bg: 'repeating-linear-gradient(40deg,#F0E8DA,#F0E8DA 11px,#E6DBCA 11px,#E6DBCA 22px)' }, { name: 'Wolldecke «Vintersol»', price: '€ 89', desc: 'Weiche Merinowolle in warmen Tönen.', badge: 'Bald', bg: 'repeating-linear-gradient(40deg,#EDE5D5,#EDE5D5 11px,#E3D8C5 11px,#E3D8C5 22px)' }, { name: 'Keramik-Schale «Ro»', price: '€ 38', desc: 'Für Früchte, Schlüssel oder stille Momente.', badge: null, bg: 'repeating-linear-gradient(40deg,#F2EAD8,#F2EAD8 11px,#E8DEC8 11px,#E8DEC8 22px)' }, { name: 'Leinentuch «Morgon»', price: '€ 44', desc: 'Natürlich, weich, zeitlos.', badge: null, bg: 'repeating-linear-gradient(40deg,#EFE8D8,#EFE8D8 11px,#E5DBC6 11px,#E5DBC6 22px)' }, ] export default function ShopPage() { return (
{/* Header */}
Shop

Stücke fürs Zuhause

Handgefertigte Objekte für ein langsameres, bewussteres Zuhause. Jedes Stück ist mit Bedacht ausgewählt.

{/* Shopify-Platzhalter-Hinweis */}
🛒

Shop-Integration kommt bald.{' '} Diese Produkte sind Platzhalter. Die Shopify Storefront API wird in{' '} lib/shopify.ts{' '} integriert.

{/* Product grid */}
{products.map((p) => (
posthog.capture('product_viewed', { product_name: p.name, price: p.price })} style={{ display: 'block', color: 'inherit', cursor: 'pointer' }} >
{p.badge && ( {p.badge} )} [ Produktfoto ]

{p.name}

{p.price}

{p.desc}

))}
) }