18 lines
419 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|