[WEB-5043] feat: web vite migration (#7973)
This commit is contained in:
parent
118ecc81ba
commit
696fb96e87
642 changed files with 3013 additions and 2311 deletions
|
|
@ -1,13 +1,11 @@
|
|||
import type { Metadata } from "next";
|
||||
import { Outlet } from "react-router";
|
||||
import type { Route } from "./+types/layout";
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Sign up - Plane",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: false,
|
||||
},
|
||||
};
|
||||
export const meta: Route.MetaFunction = () => [
|
||||
{ title: "Sign up - Plane" },
|
||||
{ name: "robots", content: "index, nofollow" },
|
||||
];
|
||||
|
||||
export default function SignUpLayout({ children }: { children: React.ReactNode }) {
|
||||
return children;
|
||||
export default function SignUpLayout() {
|
||||
return <Outlet />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue