"use client"; import { RefreshCcw, Plane } from "lucide-react"; import { Button } from "@/components/ui/button"; import Link from "next/link"; interface HeaderProps { title?: string; subtitle?: string; currentTime?: string; } export function Header({ title, subtitle, currentTime }: HeaderProps) { return (
Last updated: {currentTime}
)}{subtitle}
)}