trptk/app/checkout/layout.tsx
2026-02-24 17:14:07 +01:00

18 lines
419 B
TypeScript

import type { Metadata } from "next";
import { Header } from "@/components/header/Header";
import { Footer } from "@/components/footer/Footer";
export const metadata: Metadata = {
title: "Checkout",
robots: { index: false, follow: false },
};
export default function CheckoutLayout({ children }: { children: React.ReactNode }) {
return (
<>
<Header />
{children}
<Footer />
</>
);
}