"use client"; import Link from "next/link"; import SessionCoverImage from "../components/SessionCoverImage"; import AddressLink from "../components/AddressLink"; import Header from "../components/Header"; import Footer from "../components/Footer"; import { PAST_SESSIONS } from "@/config/home.config"; import { ACTIVITY_TYPES } from "@/config/home.config"; export default function HistoryPage() { return (

历史活动

看看之前都举办了什么~

{PAST_SESSIONS.map((s, i) => (
{PAST_SESSIONS.length - i}
{s.coverImage ? ( ) : (
)}
{ACTIVITY_TYPES[s.type]} · {s.city}

{s.title}

{s.date} {s.time} ·

查看主页 →
))}
← 返回首页
); }