import type { Metadata } from "next"; import Link from "next/link"; import { Reveal } from "../components/Reveal"; import { Footer } from "../components/Footer"; import { TrustRow } from "../components/TrustRow"; // robots: noindex — transactional landing page (Brevo's double opt-in // redirectionUrl target, see app/lib/brevo.ts's BREVO_DOI_REDIRECT_URL), // same reasoning as /bestellbestaetigung and /checkout: nothing here is // meant to be found via search, only reached via the confirmation link. export const metadata: Metadata = { title: "Newsletter bestätigt", description: "Deine Newsletter-Anmeldung bei einfach produktiv ist bestätigt.", robots: { index: false, follow: true, }, }; // Static — Brevo's confirmation click lands here with no query params to // read, so unlike /bestellbestaetigung (which hydrates a sessionStorage // order snapshot) or /checkout/verarbeitung (which polls payment status), // this page has nothing to fetch or wait on. Same visual language as // those two: warm bg-bg-base, brand-tinted circular icon, serif display // heading, thin brand divider — see BestellbestaetigungContent.tsx for // the pattern this mirrors. export default function NewsletterConfirmedPage() { return ( <>

Bestätigt!

Du bist jetzt Teil unseres Newsletters.

Schön, dass du dabei bist! Ab jetzt bekommst du hin und wieder Impulse, neue Produkte und kleine Erinnerungen von uns, damit dein Alltag ein bisschen leichter wird.

Jetzt stöbern