import { Portal } from '@/types'; export default function HeroBanner({ portal }: { portal: Partial }) { const themeColor = portal?.themeColor || '#1e3a8a'; return (
{/* Dynamic Overlay: Either a solid dark tint, or a fade into the theme color */}
{portal?.logoUrl && ( Institution Logo )}

{portal?.title || 'Welcome to the Network'}

{portal?.welcomeText || 'Please contact administration to set up.'}

); }