This commit is contained in:
eric
2026-03-15 22:57:54 -05:00
parent 39803739bb
commit 4ed10176e7
16 changed files with 442 additions and 169 deletions

View File

@@ -1,6 +1,26 @@
/** 本周活动场次 - 同城活动用 */
/** 开放城市 - 其他待开放 */
export const CITIES = ["深圳", "广州", "惠州"] as const;
/** 活动类型 */
export const ACTIVITY_TYPES = {
"skill-exchange": "技能交换",
"side-hustle": "副业沙龙/茶话会",
} as const;
/** 本周活动场次 */
export const SESSIONS = [
{ id: "session-1", date: "3月16日 周六", time: "14:00", place: "朝阳区某咖啡馆", title: "周末咖啡局" },
{ id: "session-2", date: "3月17日 周日", time: "15:00", place: "海淀区某书店", title: "读书分享" },
{ id: "session-3", date: "3月22日 周六", time: "14:00", place: "东城区某空间", title: "新朋友见面会" },
{ id: "session-1", date: "3月16日 周六", time: "14:00", place: "南山区某咖啡馆", city: "深圳", type: "skill-exchange" as const, title: "周末技能交换", coverImage: "https://picsum.photos/seed/s1/400/300" },
{ id: "session-2", date: "3月17日 周日", time: "15:00", place: "天河区某书店", city: "广州", type: "side-hustle" as const, title: "副业沙龙", coverImage: "https://picsum.photos/seed/s2/400/300" },
];
/** 最近报名展示 - mock 头像从互联网获取 */
export const RECENT_JOINERS = [
{ name: "晓琪", avatar: "https://i.pravatar.cc/80?img=1" },
{ name: "雨晴", avatar: "https://i.pravatar.cc/80?img=5" },
{ name: "子豪", avatar: "https://i.pravatar.cc/80?img=11" },
{ name: "林晓", avatar: "https://i.pravatar.cc/80?img=9" },
{ name: "佳琪", avatar: "https://i.pravatar.cc/80?img=20" },
{ name: "浩然", avatar: "https://i.pravatar.cc/80?img=12" },
{ name: "心怡", avatar: "https://i.pravatar.cc/80?img=23" },
{ name: "阿杰", avatar: "https://i.pravatar.cc/80?img=15" },
];