This commit is contained in:
eric
2026-03-18 02:35:18 -05:00
parent 1f8c9c6d26
commit 538fdfea01
11 changed files with 304 additions and 203 deletions

View File

@@ -5,7 +5,9 @@
export const NAV_LINKS = [
{ href: "/", label: "首页", external: false },
{ href: "https://meetup.hackrobot.cn", label: "探索城市", external: true },
{ href: "https://nav.hackrobot.cn", label: "游民导航", external: true },
{ href: "https://hackrobot.cn", label: "地理套利", external: true },
{ href: "https://nomadyt.com/", label: "同城沙龙", external: true },
{ href: "https://digital.hackrobot.cn", label: "学习路径", external: true },
{ href: "https://vip.hackrobot.cn", label: "会员社区", external: true },
{ href: "/about", label: "关于", external: false },
@@ -13,10 +15,41 @@ export const NAV_LINKS = [
export const HERO_TAGS = [
"城市探索",
"远程技能",
"自动化杠杆",
"地理套利",
"AI自动化",
"社群连接",
"会员成长",
"同城沙龙",
] as const;
/** 入口页主卡片:游民导航、地理套利、同城沙龙 */
export const ENTRY_CARDS = [
{
id: "nav",
label: "游民导航",
title: "出海赚美金",
description: "资源导航、工具推荐、出海指南",
href: "https://nav.hackrobot.cn",
icon: "MapPin",
accent: "blue",
},
{
id: "arbitrage",
label: "地理套利",
title: "AI自动化杠杆",
description: "低成本工作室、自建云手机、自动化系统",
href: "https://hackrobot.cn",
icon: "Zap",
accent: "emerald",
},
{
id: "salon",
label: "同城沙龙",
title: "线下连接与交流",
description: "城市聚会、主题沙龙、同频人面对面",
href: "https://nomadyt.com/",
icon: "Users",
accent: "amber",
},
] as const;
export const VALUE_PROPOSITIONS = [
@@ -48,30 +81,30 @@ export const VALUE_PROPOSITIONS = [
export const ENTRY_PATHS = [
{
id: "meetup",
title: "探索城市与连接同类人",
description: "适合想找目的地、找活动、找社群、找线下连接的人",
cta: "进入社区与城市探索",
href: "https://meetup.hackrobot.cn",
id: "nav",
title: "游民导航 · 出海赚美金",
description: "适合想找资源、工具、出海指南的人",
cta: "进入导航",
href: "https://nav.hackrobot.cn",
icon: "MapPin",
accent: "blue",
},
{
id: "digital",
title: "学习路径、专题内容与实战资源",
description: "适合还没跑通技能变现、远程工作、副业体系的人",
cta: "进入学习与专题",
href: "https://digital.hackrobot.cn",
icon: "BookOpen",
id: "arbitrage",
title: "地理套利 · AI自动化杠杆",
description: "适合想搭建低成本工作室、自建云手机、自动化系统的人",
cta: "进入工作室",
href: "https://hackrobot.cn",
icon: "Zap",
accent: "green",
},
{
id: "vip",
title: "核心会员、私域社群与持续成长",
description: "适合已经认可品牌,想获得全模块解锁、社群、问答、长期更新的人",
cta: "进入会员中心",
href: "https://vip.hackrobot.cn",
icon: "Crown",
id: "salon",
title: "同城沙龙 · 线下连接",
description: "适合想参加城市聚会、主题沙龙、面对面交流的人",
cta: "探索同城活动",
href: "https://nomadyt.com/",
icon: "Users",
accent: "amber",
},
] as const;