"use client"; interface HeroProps { lastUpdated: string | null; } export default function Hero({ lastUpdated }: HeroProps) { return (

dell-xps-nixos-serv

Home server

{lastUpdated ? `Last updated ${new Date(lastUpdated).toLocaleTimeString()}` : "Fetching system stats..."}

); }