Files
gitlab-instance-0a899031_cn…/app/data/cities.ts
2026-03-07 12:33:14 -06:00

385 lines
9.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
export interface City {
id: number;
name: string;
country: string;
countryEmoji: string;
overallScore: number;
costPerMonth: number;
internetSpeed: number;
safety: string;
liked: string;
temperature: number;
humidity: number;
nomadsNow: number;
description: string;
gradientFrom: string;
gradientTo: string;
icon: string;
tags: string[];
}
export const cities: City[] = [
{
id: 1,
name: "大理",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.5,
costPerMonth: 3000,
internetSpeed: 50,
safety: "很好",
liked: "极好",
temperature: 16,
humidity: 60,
nomadsNow: 520,
description: "苍山洱海,文艺气息浓厚的慢生活之城",
gradientFrom: "#2563eb",
gradientTo: "#0891b2",
icon: "🏯",
tags: ["热门", "便宜", "宜居", "山城", "文化", "友好社区"],
},
{
id: 2,
name: "成都",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.4,
costPerMonth: 4500,
internetSpeed: 80,
safety: "很好",
liked: "极好",
temperature: 17,
humidity: 75,
nomadsNow: 680,
description: "天府之国,美食与慢节奏的完美融合",
gradientFrom: "#059669",
gradientTo: "#65a30d",
icon: "🐼",
tags: ["热门", "美食", "都市", "新一线", "文化", "友好社区"],
},
{
id: 3,
name: "深圳",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.1,
costPerMonth: 8000,
internetSpeed: 120,
safety: "极好",
liked: "很好",
temperature: 23,
humidity: 70,
nomadsNow: 850,
description: "科技创新之城,创业者的乐园",
gradientFrom: "#1d4ed8",
gradientTo: "#0284c7",
icon: "🌃",
tags: ["热门", "高速网络", "都市", "一线城市", "安全"],
},
{
id: 4,
name: "上海",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.0,
costPerMonth: 10000,
internetSpeed: 110,
safety: "极好",
liked: "好",
temperature: 17,
humidity: 65,
nomadsNow: 1200,
description: "国际大都市,东西方文化交汇的中心",
gradientFrom: "#b45309",
gradientTo: "#78716c",
icon: "🏙️",
tags: ["热门", "高速网络", "都市", "一线城市", "文化"],
},
{
id: 5,
name: "杭州",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.3,
costPerMonth: 6000,
internetSpeed: 100,
safety: "极好",
liked: "很好",
temperature: 17,
humidity: 70,
nomadsNow: 560,
description: "西湖之畔,互联网重镇与诗画江南",
gradientFrom: "#047857",
gradientTo: "#0d9488",
icon: "⛲",
tags: ["热门", "高速网络", "都市", "新一线", "宜居", "文化"],
},
{
id: 6,
name: "厦门",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.1,
costPerMonth: 5500,
internetSpeed: 70,
safety: "很好",
liked: "很好",
temperature: 21,
humidity: 75,
nomadsNow: 320,
description: "海滨花园城市,鼓浪屿的浪漫与闽南风情",
gradientFrom: "#ea580c",
gradientTo: "#0284c7",
icon: "🌊",
tags: ["海滨", "温暖", "美食", "宜居", "文化"],
},
{
id: 7,
name: "北京",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.8,
costPerMonth: 9000,
internetSpeed: 100,
safety: "极好",
liked: "好",
temperature: 14,
humidity: 50,
nomadsNow: 780,
description: "千年古都,政治文化中心的深厚底蕴",
gradientFrom: "#dc2626",
gradientTo: "#b91c1c",
icon: "🏛️",
tags: ["都市", "一线城市", "文化", "高速网络", "历史名城"],
},
{
id: 8,
name: "广州",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.9,
costPerMonth: 6500,
internetSpeed: 90,
safety: "很好",
liked: "好",
temperature: 23,
humidity: 80,
nomadsNow: 480,
description: "食在广州,千年商都的烟火气",
gradientFrom: "#f97316",
gradientTo: "#ef4444",
icon: "🌺",
tags: ["热门", "美食", "都市", "一线城市", "温暖"],
},
{
id: 9,
name: "重庆",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.7,
costPerMonth: 4000,
internetSpeed: 75,
safety: "很好",
liked: "好",
temperature: 18,
humidity: 80,
nomadsNow: 350,
description: "8D魔幻山城火锅与夜景的不夜城",
gradientFrom: "#ef4444",
gradientTo: "#c2410c",
icon: "🌶️",
tags: ["便宜", "美食", "山城", "都市", "文化"],
},
{
id: 10,
name: "昆明",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.2,
costPerMonth: 3500,
internetSpeed: 55,
safety: "好",
liked: "很好",
temperature: 16,
humidity: 55,
nomadsNow: 380,
description: "四季如春的春城,通往东南亚的门户",
gradientFrom: "#d946ef",
gradientTo: "#059669",
icon: "🌸",
tags: ["便宜", "温暖", "宜居", "友好社区", "户外运动"],
},
{
id: 11,
name: "三亚",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.5,
costPerMonth: 5000,
internetSpeed: 60,
safety: "好",
liked: "好",
temperature: 26,
humidity: 85,
nomadsNow: 250,
description: "中国的热带天堂,椰风海韵的度假胜地",
gradientFrom: "#0ea5e9",
gradientTo: "#06b6d4",
icon: "🏖️",
tags: ["海滨", "温暖", "户外运动"],
},
{
id: 12,
name: "丽江",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.0,
costPerMonth: 3200,
internetSpeed: 45,
safety: "好",
liked: "好",
temperature: 14,
humidity: 50,
nomadsNow: 280,
description: "玉龙雪山下的纳西古城,灵魂栖息地",
gradientFrom: "#6366f1",
gradientTo: "#7c3aed",
icon: "🏔️",
tags: ["便宜", "文化", "山城", "宜居", "历史名城"],
},
{
id: 13,
name: "西安",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.8,
costPerMonth: 4200,
internetSpeed: 70,
safety: "很好",
liked: "好",
temperature: 15,
humidity: 55,
nomadsNow: 230,
description: "十三朝古都,历史与美食交织的城市",
gradientFrom: "#78716c",
gradientTo: "#a16207",
icon: "🗿",
tags: ["便宜", "美食", "文化", "历史名城"],
},
{
id: 14,
name: "南京",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.9,
costPerMonth: 5500,
internetSpeed: 85,
safety: "很好",
liked: "好",
temperature: 16,
humidity: 70,
nomadsNow: 400,
description: "六朝古都,紫金山下的文化名城",
gradientFrom: "#7c3aed",
gradientTo: "#059669",
icon: "🍃",
tags: ["文化", "都市", "新一线", "历史名城"],
},
{
id: 15,
name: "长沙",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.6,
costPerMonth: 4500,
internetSpeed: 75,
safety: "好",
liked: "好",
temperature: 17,
humidity: 75,
nomadsNow: 290,
description: "娱乐之都,夜生活与美食的不眠城",
gradientFrom: "#f59e0b",
gradientTo: "#16a34a",
icon: "🎪",
tags: ["美食", "都市", "新一线", "友好社区"],
},
{
id: 16,
name: "青岛",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.7,
costPerMonth: 4800,
internetSpeed: 65,
safety: "很好",
liked: "好",
temperature: 13,
humidity: 65,
nomadsNow: 220,
description: "红瓦绿树碧海蓝天,啤酒飘香的海滨城市",
gradientFrom: "#2563eb",
gradientTo: "#ca8a04",
icon: "🍺",
tags: ["海滨", "美食", "宜居", "户外运动"],
},
{
id: 17,
name: "苏州",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 4.0,
costPerMonth: 5000,
internetSpeed: 80,
safety: "极好",
liked: "很好",
temperature: 17,
humidity: 70,
nomadsNow: 260,
description: "上有天堂下有苏杭,古典园林与现代新城",
gradientFrom: "#0d9488",
gradientTo: "#64748b",
icon: "🏡",
tags: ["文化", "宜居", "安全", "历史名城"],
},
{
id: 18,
name: "珠海",
country: "中国",
countryEmoji: "🇨🇳",
overallScore: 3.9,
costPerMonth: 5200,
internetSpeed: 70,
safety: "很好",
liked: "好",
temperature: 23,
humidity: 75,
nomadsNow: 180,
description: "浪漫之城,毗邻澳门的海滨花园",
gradientFrom: "#0891b2",
gradientTo: "#6366f1",
icon: "🎡",
tags: ["海滨", "温暖", "宜居", "安全"],
},
];
export const allTags = [
"全部",
"热门",
"便宜",
"高速网络",
"温暖",
"安全",
"海滨",
"山城",
"都市",
"美食",
"文化",
"一线城市",
"新一线",
"宜居",
"历史名城",
"友好社区",
"户外运动",
];