import type { ReactNode } from 'react' import Link from 'next/link' import { LogoMark, SimWordmark } from '@/app/(landing)/components/navbar/components' interface AuthShellProps { /** Centered content column (the form, status copy, etc.). */ children: ReactNode /** Optional element pinned to the bottom of the shell (e.g. the support footer). */ footer?: ReactNode } /** * The light auth/status page frame — the single source of truth for the shell * every auth page and standalone status page wears. * * Mirrors the landing chrome: it pins the `light` token layer (so the platform's * light-mode `var(--*)` tokens resolve regardless of the visitor's theme), uses * the canvas/`--text-primary` surface, and renders a logo-only header that reuses * the landing {@link LogoMark} + {@link SimWordmark} at the same nav gutters. The * single content column is centered and capped for a calm single-form layout. */ export function AuthShell({ children, footer }: AuthShellProps) { return (
{children}
{footer}
) }