import { motion } from 'framer-motion' import { ShieldAlert, ArrowLeft, Twitter, Send, Lock } from 'lucide-react' import { OFFICIAL_LINKS } from '../constants/branding' interface WhitelistFullPageProps { onBack?: () => void } export function WhitelistFullPage({ onBack }: WhitelistFullPageProps) { const handleBackToLogin = () => { if (onBack) { onBack() } else { window.location.href = '/login' } } return (
{/* Background Grid & Scanlines */}
{/* Top Bar */}
ACCESS_DENIED // ERROR_403
{/* Icon */}
{/* Title */}

RESTRICTED ACCESS

{/* Description */}

[SYSTEM_MESSAGE]: YOUR IDENTIFIER IS NOT ON THE ACTIVE WHITELIST.

Platform capacity limits have been reached for the current beta phase. Prioritized access is currently reserved for authorized operators only.

{/* Info Box */}

Authorization Protocol

Access is rolled out in batches. If you believe this is an error, please verify your credentials or contact system administrators.

{/* Action Buttons */}
{/* Footer */}
ERR_CODE: WLIST_0x403 // SECURITY_LAYER_ACTIVE
) }