This commit is contained in:
root
2026-06-08 10:02:16 +08:00
parent 934b9a4a23
commit b65908e328
24 changed files with 1216 additions and 93 deletions

View File

@@ -1,6 +1,7 @@
/**
* 首页静态数据配置
*/
import { avatarForIndex } from "@/app/data/avatars";
export interface MemberPhoto {
name: string;
@@ -50,34 +51,34 @@ export interface HomeStats {
}
export const MEMBER_PHOTOS: MemberPhoto[] = [
{ name: "林晓", photo: "https://i.pravatar.cc/150?img=5" },
{ name: "张浩", photo: "https://i.pravatar.cc/150?img=3" },
{ name: "陈悦", photo: "https://i.pravatar.cc/150?img=9" },
{ name: "周杰", photo: "https://i.pravatar.cc/150?img=7" },
{ name: "吴婷", photo: "https://i.pravatar.cc/150?img=1" },
{ name: "杨帅", photo: "https://i.pravatar.cc/150?img=12" },
{ name: "赵琪", photo: "https://i.pravatar.cc/150?img=16" },
{ name: "黄磊", photo: "https://i.pravatar.cc/150?img=11" },
{ name: "孙莉", photo: "https://i.pravatar.cc/150?img=20" },
{ name: "林晓", photo: avatarForIndex(0) },
{ name: "张浩", photo: avatarForIndex(1) },
{ name: "陈悦", photo: avatarForIndex(2) },
{ name: "周杰", photo: avatarForIndex(3) },
{ name: "吴婷", photo: avatarForIndex(4) },
{ name: "杨帅", photo: avatarForIndex(5) },
{ name: "赵琪", photo: avatarForIndex(6) },
{ name: "黄磊", photo: avatarForIndex(7) },
{ name: "孙莉", photo: avatarForIndex(8) },
];
export const TRAVELING_NOW: TravelingNow[] = [
{ name: "小明", photo: "https://i.pravatar.cc/150?img=52", dest: "大理" },
{ name: "雨晴", photo: "https://i.pravatar.cc/150?img=44", dest: "成都" },
{ name: "阿杰", photo: "https://i.pravatar.cc/150?img=53", dest: "深圳" },
{ name: "小燕", photo: "https://i.pravatar.cc/150?img=47", dest: "杭州" },
{ name: "大伟", photo: "https://i.pravatar.cc/150?img=55", dest: "厦门" },
{ name: "佳琪", photo: "https://i.pravatar.cc/150?img=48", dest: "昆明" },
{ name: "志远", photo: "https://i.pravatar.cc/150?img=57", dest: "丽江" },
{ name: "心怡", photo: "https://i.pravatar.cc/150?img=49", dest: "三亚" },
{ name: "凯文", photo: "https://i.pravatar.cc/150?img=59", dest: "上海" },
{ name: "子豪", photo: "https://i.pravatar.cc/150?img=60", dest: "北京" },
{ name: "浩然", photo: "https://i.pravatar.cc/150?img=61", dest: "广州" },
{ name: "雅琪", photo: "https://i.pravatar.cc/150?img=21", dest: "南京" },
{ name: "天翔", photo: "https://i.pravatar.cc/150?img=67", dest: "长沙" },
{ name: "美玲", photo: "https://i.pravatar.cc/150?img=23", dest: "苏州" },
{ name: "俊杰", photo: "https://i.pravatar.cc/150?img=68", dest: "青岛" },
{ name: "晓华", photo: "https://i.pravatar.cc/150?img=26", dest: "珠海" },
{ name: "小明", photo: avatarForIndex(9), dest: "大理" },
{ name: "雨晴", photo: avatarForIndex(10), dest: "成都" },
{ name: "阿杰", photo: avatarForIndex(11), dest: "深圳" },
{ name: "小燕", photo: avatarForIndex(12), dest: "杭州" },
{ name: "大伟", photo: avatarForIndex(13), dest: "厦门" },
{ name: "佳琪", photo: avatarForIndex(14), dest: "昆明" },
{ name: "志远", photo: avatarForIndex(15), dest: "丽江" },
{ name: "心怡", photo: avatarForIndex(16), dest: "三亚" },
{ name: "凯文", photo: avatarForIndex(17), dest: "上海" },
{ name: "子豪", photo: avatarForIndex(18), dest: "北京" },
{ name: "浩然", photo: avatarForIndex(19), dest: "广州" },
{ name: "雅琪", photo: avatarForIndex(20), dest: "南京" },
{ name: "天翔", photo: avatarForIndex(21), dest: "长沙" },
{ name: "美玲", photo: avatarForIndex(22), dest: "苏州" },
{ name: "俊杰", photo: avatarForIndex(23), dest: "青岛" },
{ name: "晓华", photo: avatarForIndex(24), dest: "珠海" },
];
export const MEETUPS: Meetup[] = [