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 (
{/* eslint-disable-next-line @next/next/no-img-element */} Port Nimara
{children}
); }