'use client'; import MarsPlanet from '@/components/mars-planet'; interface HeaderProps { title: string; subtitle?: string; imageUrl?: string; actions?: React.ReactNode; maxWidth?: 'max-w-5xl' | 'max-w-7xl'; } export default function Header({ title, subtitle, imageUrl, actions, maxWidth = 'max-w-7xl' }: HeaderProps) { return ( <>
{/* Distant atmospheric haze */}
{imageUrl && (
{title}
)}

{title}

{subtitle && (

{subtitle}

)} {actions && (
{actions}
)}
); }