const stats = [ { value: "200+", label: "精选资源" }, { value: "7 天", label: "入门路径" }, { value: "50+", label: "远程工具" }, { value: "30+", label: "目的地" }, { value: "100%", label: "免费开源" }, ]; export default function Hero() { return (
🎒 开源免费 · 收录 200+ 篇实用资源

数字游民
生活指南

从零开始,7天开启你的数字游民生活
The open-source guide to becoming a digital nomad

{/* Stats marquee */}
{[...stats, ...stats].map((s, i) => (
{s.value} {s.label}
))}
{[...stats, ...stats].map((s, i) => (
{s.value} {s.label}
))}
); }