2025-03-09 01:11:43 +08:00
|
|
|
---
|
|
|
|
import Layout from "@/components/Layout.astro";
|
|
|
|
import { Countdown } from "@/components/Countdown";
|
|
|
|
import WorldHeatmap from '@/components/WorldHeatmap';
|
2025-03-10 17:22:18 +08:00
|
|
|
import { VISITED_PLACES } from '@/consts';
|
2025-03-09 01:11:43 +08:00
|
|
|
---
|
|
|
|
|
2025-03-28 02:27:42 +08:00
|
|
|
<Layout title="其他">
|
2025-03-09 01:11:43 +08:00
|
|
|
<div class="container mx-auto px-4 py-8">
|
|
|
|
<section class="mb-16">
|
|
|
|
<h2 class="text-3xl font-semibold text-center mb-6">距离退休还有</h2>
|
2025-04-19 16:19:39 +08:00
|
|
|
<div class="max-w-3xl mx-auto bg-white dark:bg-gray-800 rounded-xl shadow-lg p-8 hover:shadow-xl">
|
2025-03-09 01:11:43 +08:00
|
|
|
<Countdown client:load targetDate={"2070-04-06"} />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="mb-16">
|
|
|
|
<h2 class="text-3xl font-semibold text-center mb-6">我的旅行足迹</h2>
|
2025-04-19 16:19:39 +08:00
|
|
|
<div class="mx-auto bg-white dark:bg-gray-800 rounded-xl shadow-lg p-6 hover:shadow-xl">
|
2025-03-10 17:22:18 +08:00
|
|
|
<WorldHeatmap
|
|
|
|
client:only="react"
|
|
|
|
visitedPlaces={VISITED_PLACES}
|
|
|
|
/>
|
2025-03-09 01:11:43 +08:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</Layout>
|