+ {[
+ { icon: "/icon-lock.svg", title: "Sichere Zahlung", desc: "Deine Daten sind bei uns sicher und geschützt." },
+ { icon: "/icon-trust-return.png", title: "14 Tage Rückgaberecht", desc: "Nicht zufrieden? Sende deine Bestellung innerhalb von 14 Tagen zurück." },
+ { icon: "/icon-trust-leaf.png", title: "Nachhaltig verpackt", desc: "Wir achten auf umweltfreundliche Materialien und plastikfreien Versand." },
+ ].map((b) => (
+
+
+
+
{b.title}
+
{b.desc}
+
+
+ ))}
+
+
+ {/* Newsletter hint — divider under the TEXT, not the icon, per
+ this page's own Figma spec (different from /cart's version,
+ which puts the divider under the icon — the two aren't meant
+ to be identical, see project notes on this pattern). */}
+
+
+
+
+ Nach deiner Bestellung bekommst du regelmäßig Impulse & Tipps per E-Mail.
+
+
+ Für mehr Klarheit, Fokus und Struktur – jede Woche.
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/app/checkout/page.tsx b/app/checkout/page.tsx
new file mode 100644
index 0000000..acff019
--- /dev/null
+++ b/app/checkout/page.tsx
@@ -0,0 +1,26 @@
+import type { Metadata } from "next";
+import { CheckoutContent } from "./components/CheckoutContent";
+import { TrustRow } from "../components/TrustRow";
+import { Footer } from "../components/Footer";
+
+// robots: noindex — transactional page, same reasoning as /cart.
+export const metadata: Metadata = {
+ title: "Checkout",
+ description: "Schließe deine Bestellung bei einfach produktiv ab.",
+ robots: {
+ index: false,
+ follow: true,
+ },
+};
+
+export default function CheckoutPage() {
+ return (
+ <>
+
+
+
+
+
+ >
+ );
+}
diff --git a/public/icon-payment-amex.png b/public/icon-payment-amex.png
new file mode 100644
index 0000000..910d7ff
Binary files /dev/null and b/public/icon-payment-amex.png differ
diff --git a/public/icon-payment-bank.png b/public/icon-payment-bank.png
new file mode 100644
index 0000000..2ace585
Binary files /dev/null and b/public/icon-payment-bank.png differ
diff --git a/public/icon-payment-mastercard.png b/public/icon-payment-mastercard.png
new file mode 100644
index 0000000..ec1400a
Binary files /dev/null and b/public/icon-payment-mastercard.png differ
diff --git a/public/icon-payment-paypal.png b/public/icon-payment-paypal.png
new file mode 100644
index 0000000..7f34b48
Binary files /dev/null and b/public/icon-payment-paypal.png differ
diff --git a/public/icon-payment-visa.png b/public/icon-payment-visa.png
new file mode 100644
index 0000000..2cb2c26
Binary files /dev/null and b/public/icon-payment-visa.png differ