import Link from "next/link"; import Image from "next/image"; import { Reveal, RevealGroup, RevealItem } from "./Reveal"; import { getWerkzeugeCards } from "../lib/payload"; // Content now lives in Payload (WerkzeugeCards collection). Icons use a // uniform box here (object-contain) rather than the previous hardcoded // per-card hand-tuned width/height/rotation — that only made sense for a // fixed, known set of 3 SVGs authored upside-down for a specific // hand-drawn look, which doesn't generalize to a real CMS field. The 3 // original icons were re-exported pre-flipped/rotated as PNGs so they // still display correctly with plain object-contain. export async function Tools() { const tools = await getWerkzeugeCards(); if (tools.length === 0) return null; return (
{/* Section header */}

Werkzeuge

Für mehr Orientierung im Alltag

{/* Tools grid — 3 cols sm+ (moved down from the old md: so the grid arrives where the fluid floor also sits), stacked below sm; internal icon+text layout stays horizontal at every size, only the outer span changes */} {tools.map((tool) => ( {/* Icon — uniform box, pre-flipped/rotated source asset. size-14 (56px) is a fixed value at every width (14 isn't one of this project's fluid spacing-scale steps) — smaller below lg: so it doesn't dwarf the title/description text, which does shrink toward its own fluid floor there. Full 56px only from lg: up — a deliberate exception to the site's sm: (640px) structural consolidation: the grid now switches to 3-up at sm:, but title/description are still fairly close to their own fluid floor through the whole 640-1023px range, so the full-size icon still reads too big next to them there. Not re-verified visually — narrower exception kept as-is, same reasoning as Hero's content sizing. */}
{/* Card content — self-stretch + h-full + justify-between so the CTA always sits at the same bottom edge across all 3 cards, regardless of how many lines the description wraps to. The parent RevealItem's items-start (needed to keep the icon top-aligned, not stretched) otherwise stops this one child from filling the grid-equalized row height — matches the Figma card-content spec (h-full items-start justify-between), which the earlier implementation had dropped. gap-4 alongside justify-between guarantees a minimum text→CTA gap even for the tallest card (the one that defines the row height, and so has ~zero leftover space for justify-between to distribute on its own). */}

{tool.title}

{tool.description}

{/* flex items-center + arrow as its own span, not inline text — the → glyph sits low relative to the surrounding text's cap-height in the font used here, off-center against the label if it's just part of the same text node (fixed 2026-07-24, same pattern ProductGrid.tsx's "Mehr erfahren" link already uses). */} {tool.ctaLabel}
))}
); }