"use client"; import type { ReactNode } from "react"; import Link from "next/link"; import Image from "next/image"; import { Reveal } from "./Reveal"; import { useNewsletterSignup } from "../lib/useNewsletterSignup"; // Same lock icon + copy as /challenge's and /newsletter's EmailCapture — // unified across all newsletter-signup forms instead of each having its // own wording/color for this trust note. function LockIcon() { return ( ); } type NewsletterProps = { title?: ReactNode; description?: string; }; /** * Reused as-is (same bordered/muted panel + icon-decoration + form * pattern) on both Home and /newsletter (the "Impulse & Tipps" page) — * their Figma frames use the exact same newsletter-inner component * instance, just with different copy, so title/description are props * instead of a second near-duplicate component. */ export function Newsletter({ title = <>Starte mit einer Woche voller Klarheit., description = "Melde dich an und bekommst 7 kurze Impulse direkt ins Postfach – in ein paar Minuten gelesen, sofort im Alltag umsetzbar.", }: NewsletterProps = {}) { const { email, emailError, consent, handleConsentChange, status, error, successMessage, emailRef, handleEmailChange, handleEmailBlur, handleSubmit } = useNewsletterSignup("newsletter-page"); return (
{/* Outer section padding — same fluid horizontal padding as all other sections */}
{/* Rounded card: cream bg, stacks below sm (moved down from the old md:) */} {/* Left: copy — fixed width from sm+ so the form always gets the remaining space. Icon+text stacked (icon on top, centered) below sm: — side by side they squeezed the text into a narrow column on a phone (icon width + gap eating most of the card's inner width), wrapping awkwardly. Row layout with the icon beside the text is fine again from sm+, where the fixed copy-column width leaves real room. */}
{/* Decorative envelope icon, tilted -4° as per design. w-[4rem], not w-16 — this project's --spacing-16 is a fluid token (floors to 40px below 768px, see globals.css), so pairing w-16 with the fixed h-[3.438rem] squished the icon to a 40:55 box on mobile instead of the SVG's native 64:55.0096 (it has preserveAspectRatio="none", so it actually stretches to whatever box it's given — fixed 2026-07-24). */}
{/* Heading + body */}

{title}

{description}

{/* Right: form — takes remaining space, centered vertically from sm+ */}
{status === "success" ? (

{successMessage}

) : (
{/* Input + submit button — stacked below lg:, a deliberate exception to the site's sm: (640px) structural consolidation, not a leftover of it. The card above already goes side-by-side at sm: with a fixed-width copy column (--newsletter-copy-width), which only leaves ~128px for this form column at 640px and ~197px at 768px — not enough room for input+button side by side even at the new, lower floor. Stacked through the whole 640-1023px range instead, side by side again once the form column has real room (≈333px) at lg:. */}
handleEmailChange(e.target.value)} onBlur={(e) => handleEmailBlur(e.target.value)} placeholder="Deine E-Mail-Adresse" aria-invalid={Boolean(emailError)} className={`flex-1 min-w-0 bg-bg-white border rounded-sm px-6 py-3 text-body text-text-muted font-normal outline-none transition-colors ${ emailError ? "border-red-600 focus:border-red-600" : "border-border focus:border-brand" }`} />
{emailError && (

{emailError}

)} {/* Consent checkbox — required since this signup's legal basis is consent (email marketing), not the "Ich achte auf deine Daten" trust note alone. Same wording/pattern as NewsletterModal's checkbox. */} {status === "error" && (

{error}

)} {/* Privacy note — same icon/copy/color as the other newsletter forms (see /challenge's EmailCapture). */}

Keine Werbung. Jederzeit abbestellbar.

)}
); }