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

18 lines
420 B
TypeScript

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