export declare const gatePageTemplate = "import type { Metadata } from \"next\";\nimport { SiteGate } from \"@/components/layout/SiteGate\";\nimport { verifyBrandingKey } from \"@/utils/branding\";\n\n// The gate screen is never indexed. The middleware also sets X-Robots-Tag and\n// robots.txt disallows everything while SITE_PASSWORD is active.\nexport const metadata: Metadata = {\n robots: { index: false, follow: false },\n};\n\n// The login form is identical for every visitor, so it can render statically.\n// The middleware (proxy.ts) decides who is shown this screen by rewriting\n// locked requests here; unlocked visitors are redirected back to the site.\nexport const dynamic = \"force-static\";\nexport const revalidate = false;\n\nexport default function GatePage() {\n const hideBranding = verifyBrandingKey();\n return ;\n}\n";