import type { Metadata } from "next";
import CheckoutPayPage from "@/features/shop/checkout-pay-page";

export const metadata: Metadata = {
  title: "Checkout — Payment",
  robots: { index: false, follow: false },
};

export default function Page() {
  return <CheckoutPayPage />;
}
