bb-plane-fork/apps/web/app/(all)/sign-up/layout.tsx
2025-11-06 14:08:48 +05:30

11 lines
284 B
TypeScript

import { Outlet } from "react-router";
import type { Route } from "./+types/layout";
export const meta: Route.MetaFunction = () => [
{ title: "Sign up - Plane" },
{ name: "robots", content: "index, nofollow" },
];
export default function SignUpLayout() {
return <Outlet />;
}