'use client'; import React from 'react'; import { Stack } from '@/ui/Stack'; interface AuthShellProps { children: React.ReactNode; } /** * AuthShell * * The outermost container for all authentication pages. * Provides the "calm intensity" background and centered layout. */ export function AuthShell({ children }: AuthShellProps) { return ( {/* Subtle background glow - top right */} {/* Subtle background glow - bottom left */} {children} ); }