Files
gitlab-instance-0a899031_salon/config/home.config.ts
2026-03-15 23:19:43 -05:00

48 lines
2.2 KiB
TypeScript

/** 开放城市 - 其他待开放 */
export const CITIES = ["深圳", "广州", "惠州"] as const;
/** 活动类型 */
export const ACTIVITY_TYPES = {
"skill-exchange": "技能交换",
"side-hustle": "副业沙龙/茶话会",
"cafe": "咖啡馆聊天",
"bookstore": "书店",
"citywalk": "Citywalk",
"light-chat": "轻话题",
} as const;
/** 活动标签 */
export const SESSION_TAGS = {
"first-friendly": "首次友好",
"public-venue": "公开场地",
"small-group": "6-8 人",
"weekend-pm": "周末下午",
"cafe": "咖啡馆",
"bookstore": "书店",
"citywalk": "Citywalk",
"light-topic": "轻话题",
} as const;
/** 咖啡馆/书店/城市 占位图 - Unsplash 真实场景 */
const IMG_CAFE = "https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=400&h=300&fit=crop";
const IMG_BOOKSTORE = "https://images.unsplash.com/photo-1481627834876-b7833e8f5570?w=400&h=300&fit=crop";
const IMG_CITY = "https://images.unsplash.com/photo-1519501025264-65ba15a82390?w=400&h=300&fit=crop";
/** 本周活动场次 */
export const SESSIONS = [
{ id: "session-1", date: "3月16日 周六", time: "14:00", place: "南山区某咖啡馆", city: "深圳", type: "skill-exchange" as const, title: "周末技能交换", coverImage: IMG_CAFE, tags: ["first-friendly", "public-venue", "small-group", "weekend-pm", "cafe", "light-topic"] as const },
{ id: "session-2", date: "3月17日 周日", time: "15:00", place: "天河区某书店", city: "广州", type: "side-hustle" as const, title: "副业沙龙", coverImage: IMG_BOOKSTORE, tags: ["first-friendly", "public-venue", "small-group", "weekend-pm", "bookstore"] as const },
];
/** 最近报名展示 - 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" },
];