diff --git a/app/der-eine/components/Focus.tsx b/app/der-eine/components/Focus.tsx index 70c13b4..b341a5d 100644 --- a/app/der-eine/components/Focus.tsx +++ b/app/der-eine/components/Focus.tsx @@ -1,41 +1,81 @@ -import { Reveal } from "../../components/Reveal"; +import { Reveal, RevealGroup, RevealItem } from "../../components/Reveal"; + +// Line icons matching the der-eine.png mockup's icon row — no matching +// /public asset existed for these concepts (checked: pencil/pen/sparkle/ +// shield), so drawn fresh rather than upscaling a raster crop from the +// mockup, same reasoning as this page's own IconCheck below. +function IconPencil() { + return ( + + + + + ); +} + +function IconPen() { + return ( + + + + + ); +} + +function IconSparkle() { + return ( + + + + ); +} + +function IconShield() { + return ( + + + + ); +} // "Was kann er?" section's full four-item breakdown (build, engraving, -// size, use case), each with its own one-line explanation rather than a -// bare phrase. +// size, use case). Same card shape as todo-cards/components/HowItWorks.tsx +// — icon on top, centered, RevealGroup/RevealItem stagger, identical +// title/description typography — reused for visual consistency with the +// rest of the site rather than a one-off layout. 4 cards instead of +// HowItWorks' 3 numbered steps, no connecting arrows (independent facts, +// not a sequence). const items = [ - { title: "Metallgehäuse", desc: "Robust, wertig und angenehm in der Hand." }, - { title: "Lasergravur", desc: "„Der Eine.“ auf der einen Seite. „einfach produktiv.“ auf der anderen." }, - { title: "Kompakt", desc: "Passt ans Notizbuch, auf den Schreibtisch oder in die Tasche." }, - { title: "Für jeden Tag", desc: "Für Notizen, Gedanken, Listen und alles, was du lieber aufschreibst, bevor du es wieder vergisst." }, + { icon: IconPencil, title: "Metallgehäuse", desc: "Robust, wertig und angenehm in der Hand." }, + { icon: IconSparkle, title: "Lasergravur", desc: "„Der Eine.“ auf der einen Seite. „einfach produktiv.“ auf der anderen." }, + { icon: IconShield, title: "Kompakt", desc: "Passt ans Notizbuch, auf den Schreibtisch oder in die Tasche." }, + { icon: IconPen, title: "Für jeden Tag", desc: "Für Notizen, Gedanken, Listen und alles, was du lieber aufschreibst, bevor du es wieder vergisst." }, ]; -// No product photo here (removed 2026-08-25 — feedback: another product -// shot in this section was redundant with Hero's own gallery). Plain -// full-width text block instead of the earlier photo+text two-column -// layout. export function Focus() { return (
- +

Was kann er?

-

+

Schreiben. Und das ziemlich gut. Metallgehäuse, angenehmes Gewicht und eine klassische Kugelschreibermine — kein besonderes Produktivitäts-Gadget, sondern einfach ein guter Stift, den du gern zur Hand nimmst.

-
    - {items.map((item) => ( -
  • - {item.title} - {item.desc} -
  • - ))} -
+ + + {items.map(({ icon: Icon, title, desc }) => ( + + +

{title}

+

{desc}

+
+ ))} +
); }