import { Outlet } from 'react-router-dom' import { XMarkIcon, XCircleIcon } from '@heroicons/react/24/outline' import { useAuth } from '../contexts/AuthContext' import SiteHeader from './SiteHeader' export default function Layout() { const { authError, clearAuthError } = useAuth() return (
{/* Shared top navigation — identical to the home page header. */} {/* Main content — full width (global sidebar removed; home page is the nav hub) */}
{/* Auth Error Banner - Mobile Friendly */} {authError && (

Login failed

{authError}

)}
) }