import { RefreshCcw } from 'lucide-react'; import { motion } from 'framer-motion'; import { TimeRangePills } from './TimeRangePills'; import { FaviconImage } from './shared/FaviconImage'; import { cn } from '@/lib/utils'; import type { Period } from '@/lib/api'; export function Header({ period, onPeriodChange, onRefresh, mode, refreshing, domain, }: { period: Period; onPeriodChange: (p: Period) => void; onRefresh: () => void; mode: 'standalone' | 'connected'; refreshing: boolean; domain?: string; }) { return (
{domain ? ( ) : null}

Performance

{mode === 'connected' && ( Connected )}

Understand how AI discovers, ranks, and recommends your website

); }