import { motion } from 'motion/react'; import { Calendar, Globe, MapPin } from 'lucide-react'; import { ScoreRing } from './ui/ScoreRing'; interface ReportHeaderProps { clinicName: string; clinicNameEn: string; overallScore: number; date: string; targetUrl: string; location: string; logoImage?: string; brandColors?: { primary: string; accent: string; text: string }; } export default function ReportHeader({ clinicName, logoImage, brandColors, clinicNameEn, overallScore, date, targetUrl, location, }: ReportHeaderProps) { return (
{/* Animated blobs */}
{/* Left: Text content */} Marketing Intelligence Report {logoImage && ( {clinicName} { (e.target as HTMLImageElement).style.display = 'none'; }} /> )} {clinicName} {clinicNameEn} {date} {targetUrl} {location} {/* Right: Score ring */}

Overall Score

); }