280 lines
7.8 KiB
TypeScript
280 lines
7.8 KiB
TypeScript
/**
|
||
* Nomadro 品牌母站 - Mock 数据
|
||
* 架构便于后续接入 CMS 或 API
|
||
*/
|
||
|
||
export const NAV_LINKS = [
|
||
{ href: "/", label: "首页", external: false },
|
||
{ href: "https://nav.hackrobot.cn", label: "游民导航", external: true },
|
||
{ href: "https://hackrobot.cn", label: "地理套利", external: true },
|
||
{ href: "https://nomadro.live", label: "直播工具箱", external: true },
|
||
{ href: "https://digital.hackrobot.cn", label: "学习路径", external: true },
|
||
{ href: "https://vip.hackrobot.cn", label: "会员社区", external: true },
|
||
{ href: "/about", label: "关于", external: false },
|
||
] as const;
|
||
|
||
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",
|
||
emoji: "🧭",
|
||
},
|
||
{
|
||
id: "arbitrage",
|
||
label: "地理套利",
|
||
title: "AI 自动化杠杆",
|
||
description: "低成本工作室、自建云手机、自动化系统",
|
||
href: "https://hackrobot.cn",
|
||
icon: "Zap",
|
||
accent: "emerald",
|
||
emoji: "⚡",
|
||
},
|
||
{
|
||
id: "live",
|
||
label: "直播工具箱",
|
||
title: "随时随地开播",
|
||
description: "推流工具、场景模板、直播变现一站搞定",
|
||
href: "https://nomadro.live",
|
||
icon: "Radio",
|
||
accent: "rose",
|
||
emoji: "🎬",
|
||
},
|
||
] as const;
|
||
|
||
export const VALUE_PROPOSITIONS = [
|
||
{
|
||
id: "city",
|
||
icon: "MapPin",
|
||
title: "找到适合长期旅居和远程工作的城市",
|
||
description: "从大理到深圳,从成都到杭州,帮你筛选真正适合数字游民生活的目的地。",
|
||
emoji: "🏝️",
|
||
},
|
||
{
|
||
id: "income",
|
||
icon: "TrendingUp",
|
||
title: "建立可持续的远程技能与收入结构",
|
||
description: "不是一夜暴富,而是可复制、可积累的技能变现路径。",
|
||
emoji: "📈",
|
||
},
|
||
{
|
||
id: "tools",
|
||
icon: "Zap",
|
||
title: "用工具、系统和自动化放大个人能力",
|
||
description: "减少重复劳动,把时间用在真正重要的事情上。",
|
||
emoji: "🛠️",
|
||
},
|
||
{
|
||
id: "community",
|
||
icon: "Users",
|
||
title: "进入同频社区,减少孤独和试错成本",
|
||
description: "找到同类人,分享经验,互相支持,少走弯路。",
|
||
emoji: "🤝",
|
||
},
|
||
] as const;
|
||
|
||
export const ENTRY_PATHS = [
|
||
{
|
||
id: "nav",
|
||
title: "游民导航 · 出海赚美金",
|
||
description: "适合想找资源、工具、出海指南的人",
|
||
cta: "进入导航",
|
||
href: "https://nav.hackrobot.cn",
|
||
icon: "MapPin",
|
||
accent: "blue",
|
||
emoji: "🧭",
|
||
},
|
||
{
|
||
id: "arbitrage",
|
||
title: "地理套利 · AI 自动化杠杆",
|
||
description: "适合想搭建低成本工作室、自建云手机、自动化系统的人",
|
||
cta: "进入工作室",
|
||
href: "https://hackrobot.cn",
|
||
icon: "Zap",
|
||
accent: "green",
|
||
emoji: "⚡",
|
||
},
|
||
{
|
||
id: "live",
|
||
title: "直播工具箱 · 随时随地开播",
|
||
description: "适合想用直播变现、搭建个人 IP、远程开播的数字游民",
|
||
cta: "进入直播工具箱",
|
||
href: "https://nomadro.live",
|
||
icon: "Radio",
|
||
accent: "rose",
|
||
emoji: "🎬",
|
||
},
|
||
] as const;
|
||
|
||
export const METHODOLOGY_SYSTEMS = [
|
||
{
|
||
id: "location",
|
||
title: "地点自由",
|
||
description: "选择适合远程生活的城市,平衡成本、网速、社群与生活方式。",
|
||
emoji: "✈️",
|
||
},
|
||
{
|
||
id: "income",
|
||
title: "收入结构",
|
||
description: "建立不依赖固定地点的收入来源,技能、内容、自动化缺一不可。",
|
||
emoji: "💎",
|
||
},
|
||
{
|
||
id: "tools",
|
||
title: "工具杠杆",
|
||
description: "用系统和工具放大个人产出,把时间用在创造价值上。",
|
||
emoji: "⚙️",
|
||
},
|
||
{
|
||
id: "community",
|
||
title: "社群连接",
|
||
description: "同频人的归属感,减少孤独,加速成长,共享信息与机会。",
|
||
emoji: "🌐",
|
||
},
|
||
] as const;
|
||
|
||
export const SCENARIOS = [
|
||
{
|
||
id: "beginner",
|
||
pain: "我还在上班,想低成本开始",
|
||
path: "先看学习路径",
|
||
cta: "查看学习专题",
|
||
href: "https://digital.hackrobot.cn",
|
||
emoji: "🌱",
|
||
},
|
||
{
|
||
id: "skill",
|
||
pain: "我已经会技术/内容,想把能力变成收入",
|
||
path: "先看实战资源",
|
||
cta: "进入学习与专题",
|
||
href: "https://digital.hackrobot.cn",
|
||
emoji: "🚀",
|
||
},
|
||
{
|
||
id: "live",
|
||
pain: "我想用直播变现,但不知道从哪开始",
|
||
path: "先看直播工具箱",
|
||
cta: "进入直播工具箱",
|
||
href: "https://nomadro.live",
|
||
emoji: "🎬",
|
||
},
|
||
{
|
||
id: "deep",
|
||
pain: "我想进入更深圈层,不想一个人摸索",
|
||
path: "进入会员社区",
|
||
cta: "进入会员中心",
|
||
href: "https://vip.hackrobot.cn",
|
||
emoji: "👑",
|
||
},
|
||
] as const;
|
||
|
||
export const ECOSYSTEM_COLUMNS = [
|
||
{
|
||
title: "城市 / 直播 / 社群",
|
||
items: ["城市库", "直播工具", "推流模板", "微信群", "线上连接"],
|
||
emoji: "🌍",
|
||
},
|
||
{
|
||
title: "学习 / 工具 / 专题",
|
||
items: ["电子书", "教程", "工具", "训练营", "学习路径"],
|
||
emoji: "📚",
|
||
},
|
||
{
|
||
title: "会员 / 私域 / 更新",
|
||
items: ["会员权益", "视频", "社群", "问答", "持续更新"],
|
||
emoji: "💫",
|
||
},
|
||
] as const;
|
||
|
||
export const CONTENT_PREVIEW_ITEMS = [
|
||
{
|
||
id: "1",
|
||
type: "城市",
|
||
tag: "本周推荐城市",
|
||
title: "大理:苍山洱海边的慢生活",
|
||
summary: "适合远程工作的文艺之城,¥3,000/月起",
|
||
href: "https://meetup.hackrobot.cn",
|
||
},
|
||
{
|
||
id: "2",
|
||
type: "专题",
|
||
tag: "本周精选专题",
|
||
title: "从零搭建远程收入结构",
|
||
summary: "技能变现的完整路径与实战案例",
|
||
href: "https://digital.hackrobot.cn",
|
||
},
|
||
{
|
||
id: "3",
|
||
type: "工具",
|
||
tag: "本周工具推荐",
|
||
title: "数字游民必备工具清单",
|
||
summary: "远程协作、自动化、时间管理的精选组合",
|
||
href: "https://digital.hackrobot.cn",
|
||
},
|
||
{
|
||
id: "4",
|
||
type: "直播",
|
||
tag: "直播工具箱",
|
||
title: "游民直播开播指南",
|
||
summary: "推流设置、场景搭建、变现路径一站搞定",
|
||
href: "https://nomadro.live",
|
||
},
|
||
{
|
||
id: "5",
|
||
type: "专题",
|
||
tag: "学习路径",
|
||
title: "副业变现入门指南",
|
||
summary: "从想法到第一笔收入的 30 天路径",
|
||
href: "https://digital.hackrobot.cn",
|
||
},
|
||
{
|
||
id: "6",
|
||
type: "会员",
|
||
tag: "会员专属",
|
||
title: "私域社群深度交流",
|
||
summary: "高密度人脉与资源网络,持续更新",
|
||
href: "https://vip.hackrobot.cn",
|
||
},
|
||
] as const;
|
||
|
||
export const TRUST_PRINCIPLES = [
|
||
{
|
||
title: "长期主义",
|
||
description: "不是速成课,不是躺赚项目,而是一套可持续的生活方式系统。",
|
||
emoji: "🌿",
|
||
},
|
||
{
|
||
title: "系统搭建",
|
||
description: "从选择城市到建立收入,再到工具和社群,每一步都有清晰路径。",
|
||
emoji: "🏗️",
|
||
},
|
||
{
|
||
title: "同频连接",
|
||
description: "适合愿意行动、愿意搭建自己路径的人,找到同类,一起前行。",
|
||
emoji: "🔗",
|
||
},
|
||
] as const;
|
||
|
||
export const FINAL_CTAS = [
|
||
{ label: "进入直播工具箱", href: "https://nomadro.live", emoji: "🎬" },
|
||
{ label: "看专题与学习路径", href: "https://digital.hackrobot.cn", emoji: "📚" },
|
||
{ label: "进会员与私域成长", href: "https://vip.hackrobot.cn", emoji: "👑" },
|
||
] as const;
|
||
|
||
export const FLOATING_EMOJIS = [
|
||
"✈️", "🌍", "💻", "☕", "🏖️", "📡", "🎧", "🌅", "🧳", "📱",
|
||
] as const;
|