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

12 lines
368 B
TypeScript

import { Outlet } from "react-router";
// types
import type { Route } from "./+types/layout";
export const meta: Route.MetaFunction = () => [
{ name: "robots", content: "index, nofollow" },
{ name: "viewport", content: "width=device-width, initial-scale=1, minimum-scale=1, viewport-fit=cover" },
];
export default function HomeLayout() {
return <Outlet />;
}