interface HeroProps { lastUpdated: string | null; } export default function Hero({ lastUpdated }: HeroProps) { return (
dell-xps-nixos-serv
{lastUpdated ? `Last updated ${new Date(lastUpdated).toLocaleTimeString()}` : "Fetching system stats..."}