import type { Metadata } from "next"; import Link from "next/link"; import { Logo } from "@/components/ui/logo"; import { NO_INDEX } from "@/lib/seo"; // Sign-in / sign-up / password-reset screens. Thin, duplicate-prone, and the // middleware appends a ?redirect= query to /sign-in for every gated URL — which // would otherwise generate unlimited indexable variants of the same page. export const metadata: Metadata = NO_INDEX; export default function AuthLayout({ children }: { children: React.ReactNode }) { return (
{children}
); }