import type { Metadata } from "next";
import { BestellbestaetigungContent } from "./components/BestellbestaetigungContent";
import { TrustRow } from "../components/TrustRow";
import { Footer } from "../components/Footer";
// robots: noindex — transactional page, same reasoning as /cart and
// /checkout (this one doubles as a receipt, not something to surface in
// search results).
export const metadata: Metadata = {
title: "Bestellbestätigung",
description: "Deine Bestellung bei einfach produktiv wurde erfolgreich aufgegeben.",
robots: {
index: false,
follow: true,
},
};
export default function BestellbestaetigungPage() {
return (
<>
>
);
}