const BG_URL = 'https://s3.portnimara.com/images/Overhead_1_blur.png'; const LOGO_URL = 'https://s3.portnimara.com/images/Port%20Nimara%20New%20Logo-Circular%20Frame_250px.png'; /** * Branded shell shared by every auth/form surface — CRM login, portal login, * password set/reset/activate, forgot-password. Renders the blurred Port * Nimara overhead background, the circular logo, and a centered white card * that consumers populate with their own form/content. */ export function BrandedAuthShell({ children }: { children: React.ReactNode }) { return (
{/* Full-viewport background layer — pinned to the visible viewport via `fixed inset-0` so the marina image always reaches the actual screen edges regardless of the iOS Safari URL bar showing/hiding. The shell's layout layer above sits on top via z-index. */}
{/* eslint-disable-next-line @next/next/no-img-element */} Port Nimara
{children}
); }