44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
export const HOME_STATS = {
|
|
cities: "18",
|
|
nomads: "5,000+",
|
|
meetups: "8+",
|
|
homeMeetups: "50+",
|
|
cost: "¥3,000",
|
|
};
|
|
|
|
export const COMMUNITY_STATS = {
|
|
onlineMembers: "3,200+",
|
|
messagesPerMonth: "3,200+",
|
|
};
|
|
|
|
export const MEMBER_PHOTOS = [
|
|
{ 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" },
|
|
];
|
|
|
|
export const MEETUPS = [
|
|
{ city: "大理", emoji: "🏯", date: "3月9日", count: 12 },
|
|
{ city: "成都", emoji: "🐼", date: "3月12日", count: 8 },
|
|
{ city: "深圳", emoji: "🌃", date: "3月14日", count: 15 },
|
|
];
|
|
|
|
export const ROUTES = [
|
|
{
|
|
titleZh: "云南慢生活线",
|
|
titleEn: "Yunnan Slow Life",
|
|
citiesZh: ["昆明", "大理", "丽江"],
|
|
citiesEn: ["Kunming", "Dali", "Lijiang"],
|
|
emojis: ["🌸", "🏯", "🏔️"],
|
|
durationZh: "3-6个月",
|
|
durationEn: "3-6 months",
|
|
costZh: "¥3,200/月起",
|
|
costEn: "From ¥3,200/month",
|
|
descZh: "从春城昆明出发,感受最纯粹的慢生活",
|
|
descEn: "From Kunming, experience the purest slow life",
|
|
gradient: "from-purple-500 to-pink-500",
|
|
},
|
|
];
|