import { CountUp, Reveal } from "./motion"; const stats = [ { value: 752, suffix: " km", label: "Addis Ababa to Djibouti, electrified standard gauge" }, { value: 16, prefix: "~", suffix: " h", label: "Mojo Dry Port to Djibouti Port transit" }, { value: 2, label: "Countries connected by one railway" }, { text: "24/7", label: "Booking and tracking online" }, ] as const; export function Stats() { return (
{stats.map((stat) => (
{"text" in stat ? ( stat.text ) : ( )}
{stat.label}
))}
); }