14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
import type { 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;
|
|
}
|