import React from 'react'; import { MicrodaoBrandBadge } from './MicrodaoBrandBadge'; interface MicrodaoHeroProps { bannerUrl?: string | null; logoUrl?: string | null; name: string; tagline?: string | null; children?: React.ReactNode; // For action buttons etc. } export const MicrodaoHero: React.FC = ({ bannerUrl, logoUrl, name, tagline, children }) => { return (
{/* Background / Banner */} {bannerUrl ? (
) : (
)} {/* Overlay */}
{/* Content */}
{/* Logo */}
{/* Text */}

{name}

{tagline && (

{tagline}

)}
{/* Actions */} {children && (
{children}
)}
); };