bb-plane-fork/web/app/(all)/sign-up/layout.tsx

13 lines
259 B
TypeScript

import { Metadata } from "next";
export const metadata: Metadata = {
title: "Sign up - Plane",
robots: {
index: true,
follow: false,
}
};
export default function SignUpLayout({ children }: { children: React.ReactNode }) {
return children;
}