454 lines
21 KiB
TypeScript
454 lines
21 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import Link from "next/link";
|
|
import {
|
|
ArrowRight,
|
|
Bell,
|
|
Check,
|
|
CheckCircle2,
|
|
Clock3,
|
|
CloudSun,
|
|
Database,
|
|
Gauge,
|
|
LineChart,
|
|
Radar,
|
|
ShieldCheck,
|
|
Users,
|
|
} from "lucide-react";
|
|
import { I18nProvider, useI18n } from "@/hooks/useI18n";
|
|
import {
|
|
getSupabaseBrowserClient,
|
|
hasSupabasePublicEnv,
|
|
} from "@/lib/supabase/client";
|
|
|
|
const COVERAGE_EN = [
|
|
"Live airport observations",
|
|
"DEB blend forecast",
|
|
"Model-implied distribution",
|
|
"Intraday observation windows",
|
|
"Deviation checks and risk thresholds",
|
|
"Paid Telegram alerts",
|
|
];
|
|
|
|
const COVERAGE_ZH = [
|
|
"机场实况观测数据",
|
|
"DEB 智能融合预报",
|
|
"模型隐含分布预测",
|
|
"日内分段观测窗口",
|
|
"偏差校验与风控阈值",
|
|
"付费 Telegram 实时通知",
|
|
];
|
|
|
|
const PRO_FEATURES_EN = [
|
|
"METAR airport observations and runway-level reference data",
|
|
"DEB blend forecast with model-spread context",
|
|
"Model-implied distribution and probability estimates",
|
|
"Intraday windows, deviation metrics, and settlement context",
|
|
"Paid Telegram group eligibility and alert workflows",
|
|
"Priority support for subscription and access issues",
|
|
];
|
|
|
|
const PRO_FEATURES_ZH = [
|
|
"METAR 机场实测与跑道级参考数据",
|
|
"DEB 智能融合预报与模型分歧背景",
|
|
"模型隐含分布预测与概率估算",
|
|
"日内观测窗口、偏差度量与结算背景",
|
|
"付费 Telegram 群准入与提醒工作流",
|
|
"订阅与准入问题优先支持",
|
|
];
|
|
|
|
function WeatherWorkflowIllustration() {
|
|
return (
|
|
<div
|
|
aria-hidden="true"
|
|
className="pointer-events-none absolute inset-x-0 top-16 z-0 mx-auto hidden h-[240px] max-w-6xl overflow-hidden md:block"
|
|
>
|
|
<div className="absolute left-8 top-14 h-24 w-24 rotate-[-7deg] rounded-lg border-2 border-slate-900 bg-[#fff3b0] shadow-[6px_6px_0_rgba(15,23,42,0.12)]" />
|
|
<div className="absolute right-14 top-10 h-20 w-28 rotate-[6deg] rounded-lg border-2 border-slate-900 bg-[#dff8ea] shadow-[6px_6px_0_rgba(15,23,42,0.12)]" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function InstitutionalLandingScreen() {
|
|
const { locale, toggleLocale } = useI18n();
|
|
const isEn = locale === "en-US";
|
|
const [isAuthenticated, setIsAuthenticated] = useState(false);
|
|
const [authChecked, setAuthChecked] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (!hasSupabasePublicEnv()) {
|
|
setAuthChecked(true);
|
|
return;
|
|
}
|
|
const supabase = getSupabaseBrowserClient();
|
|
supabase.auth.getSession().then(({ data: { session } }) => {
|
|
setIsAuthenticated(!!session?.user);
|
|
setAuthChecked(true);
|
|
});
|
|
}, []);
|
|
|
|
const coverage = isEn ? COVERAGE_EN : COVERAGE_ZH;
|
|
|
|
const platformCards = isEn
|
|
? [
|
|
{
|
|
icon: Radar,
|
|
title: "Live Evidence",
|
|
body: "Airport observations, model spreads, and deviation checks stay in one calm workspace.",
|
|
},
|
|
{
|
|
icon: Gauge,
|
|
title: "Daily Review",
|
|
body: "Scan the city board, compare forecasts, and keep the current decision context visible.",
|
|
},
|
|
{
|
|
icon: ShieldCheck,
|
|
title: "Access Control",
|
|
body: "Trial users get the same product experience as Pro, except the paid Telegram group link stays hidden.",
|
|
},
|
|
]
|
|
: [
|
|
{
|
|
icon: Radar,
|
|
title: "实况证据",
|
|
body: "机场观测、模型分歧与偏差校验放在一个安静清晰的工作台里。",
|
|
},
|
|
{
|
|
icon: Gauge,
|
|
title: "每日复盘",
|
|
body: "快速扫描城市面板、比较预报路径,并保留当前判断上下文。",
|
|
},
|
|
{
|
|
icon: ShieldCheck,
|
|
title: "权益分层",
|
|
body: "试用期权益和 Pro 一致,唯一例外是不显示付费 Telegram 群链接。",
|
|
},
|
|
];
|
|
|
|
const heroStats = isEn
|
|
? [
|
|
{ label: "Trial", value: "3 days" },
|
|
{ label: "Monthly", value: "29.9 USDC" },
|
|
{ label: "Quarterly", value: "79.9 USDC" },
|
|
{ label: "Referral", value: "20 USDC" },
|
|
]
|
|
: [
|
|
{ label: "试用", value: "3 天" },
|
|
{ label: "月付", value: "29.9 USDC" },
|
|
{ label: "季度", value: "79.9 USDC" },
|
|
{ label: "邀请首月", value: "20 USDC" },
|
|
];
|
|
|
|
return (
|
|
<div className="min-h-screen bg-[#fbfbfa] text-slate-950 antialiased">
|
|
<header className="sticky top-0 z-30 border-b border-slate-200 bg-[#fbfbfa]/90 backdrop-blur-xl">
|
|
<div className="mx-auto flex h-14 max-w-6xl items-center justify-between px-4 sm:px-6">
|
|
<Link href="/" className="flex items-center gap-2 transition-opacity hover:opacity-80">
|
|
<img src="/logo.png" alt="PolyWeather" className="h-7 w-auto object-contain" />
|
|
</Link>
|
|
|
|
<nav className="hidden items-center gap-7 text-sm font-medium text-slate-500 md:flex">
|
|
<a href="#platform" className="hover:text-slate-950">
|
|
{isEn ? "Platform" : "平台"}
|
|
</a>
|
|
<a href="#coverage" className="hover:text-slate-950">
|
|
{isEn ? "Data" : "数据"}
|
|
</a>
|
|
<a href="#pricing" className="hover:text-slate-950">
|
|
{isEn ? "Pricing" : "定价"}
|
|
</a>
|
|
</nav>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<button
|
|
type="button"
|
|
onClick={toggleLocale}
|
|
className="inline-flex h-9 cursor-pointer items-center gap-1 rounded-md border border-slate-200 bg-white px-1 text-xs font-semibold text-slate-500 shadow-sm hover:border-slate-300"
|
|
>
|
|
<span className={`rounded px-2 py-1 ${!isEn ? "bg-slate-900 text-white" : ""}`}>中</span>
|
|
<span className={`rounded px-2 py-1 ${isEn ? "bg-slate-900 text-white" : ""}`}>EN</span>
|
|
</button>
|
|
|
|
{!authChecked ? (
|
|
<div className="h-9 w-24 animate-pulse rounded-md bg-slate-200" />
|
|
) : isAuthenticated ? (
|
|
<div className="flex items-center gap-2">
|
|
<Link
|
|
href="/terminal"
|
|
className="inline-flex h-9 items-center gap-2 rounded-md bg-slate-950 px-3 text-sm font-semibold text-white hover:bg-slate-800"
|
|
>
|
|
{isEn ? "Open" : "进入"}
|
|
<ArrowRight size={14} />
|
|
</Link>
|
|
<Link
|
|
href="/account"
|
|
className="grid h-9 w-9 place-items-center rounded-md border border-slate-200 bg-white text-slate-600 shadow-sm hover:border-slate-300 hover:text-slate-950"
|
|
title={isEn ? "Account" : "账户"}
|
|
>
|
|
<Users size={15} />
|
|
</Link>
|
|
</div>
|
|
) : (
|
|
<>
|
|
<Link
|
|
href="/auth/login?next=%2Fterminal"
|
|
className="hidden h-9 items-center rounded-md px-3 text-sm font-semibold text-slate-600 hover:text-slate-950 sm:inline-flex"
|
|
>
|
|
{isEn ? "Log in" : "登录"}
|
|
</Link>
|
|
<Link
|
|
href="/auth/login?next=%2Fterminal&mode=signup"
|
|
className="inline-flex h-9 items-center gap-2 rounded-md bg-slate-950 px-3 text-sm font-semibold text-white hover:bg-slate-800"
|
|
>
|
|
{isEn ? "Start" : "开始使用"}
|
|
<ArrowRight size={14} />
|
|
</Link>
|
|
</>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section className="relative overflow-hidden border-b border-slate-200 px-4 pb-16 pt-20 sm:px-6 sm:pt-24">
|
|
<WeatherWorkflowIllustration />
|
|
<div className="relative z-10 mx-auto max-w-6xl">
|
|
<div className="mx-auto max-w-3xl text-center">
|
|
<h1 className="text-5xl font-black leading-[1.04] tracking-tight text-slate-950 sm:text-6xl lg:text-7xl">
|
|
PolyWeather
|
|
</h1>
|
|
<p className="mx-auto mt-6 max-w-2xl text-lg leading-8 text-slate-600 sm:text-xl">
|
|
{isEn
|
|
? "A calmer way to read airport weather, model forecasts, and intraday risk before the market moves."
|
|
: "用更轻松的方式阅读机场天气、模型预报和日内风险,在市场变化前完成判断。"}
|
|
</p>
|
|
<div className="mt-8 flex flex-col items-center justify-center gap-3 sm:flex-row">
|
|
<Link
|
|
href={authChecked && isAuthenticated ? "/terminal" : "/auth/login?next=%2Fterminal"}
|
|
className="inline-flex h-11 items-center justify-center gap-2 rounded-md bg-slate-950 px-5 text-sm font-bold text-white shadow-sm hover:bg-slate-800"
|
|
>
|
|
{isEn ? "Open product" : "进入产品"}
|
|
<ArrowRight size={15} />
|
|
</Link>
|
|
<Link
|
|
href="/account"
|
|
className="inline-flex h-11 items-center justify-center gap-2 rounded-md border border-slate-200 bg-white px-5 text-sm font-bold text-slate-700 shadow-sm hover:border-slate-300 hover:text-slate-950"
|
|
>
|
|
{isEn ? "Subscribe / account" : "订阅 / 账户"}
|
|
</Link>
|
|
</div>
|
|
<p className="mt-4 text-sm text-slate-500">
|
|
{isEn
|
|
? "Start with a one-time 3-day trial. Trial access matches Pro except for the paid Telegram group link."
|
|
: "新用户可先领一次 3 天试用。试用期权益和 Pro 一致,除了不显示付费 Telegram 群链接。"}
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mx-auto mt-14 max-w-5xl rounded-lg border border-slate-200 bg-white p-2 shadow-[0_24px_70px_rgba(15,23,42,0.12)]">
|
|
<div className="flex h-9 items-center gap-2 border-b border-slate-200 px-3">
|
|
<span className="h-2.5 w-2.5 rounded-full bg-[#ff6b6b]" />
|
|
<span className="h-2.5 w-2.5 rounded-full bg-[#ffd166]" />
|
|
<span className="h-2.5 w-2.5 rounded-full bg-[#06d6a0]" />
|
|
<span className="ml-2 text-xs font-semibold text-slate-400">polyweather.app/terminal</span>
|
|
</div>
|
|
<img
|
|
src="/static/web.png"
|
|
alt={isEn ? "PolyWeather terminal preview" : "PolyWeather 终端预览"}
|
|
className="mt-2 aspect-[16/9] w-full rounded-md border border-slate-100 object-cover object-top"
|
|
/>
|
|
</div>
|
|
|
|
<div className="mx-auto mt-8 grid max-w-5xl gap-2 sm:grid-cols-2 lg:grid-cols-4">
|
|
{heroStats.map((item) => (
|
|
<div key={item.label} className="rounded-lg border border-slate-200 bg-white px-4 py-4 shadow-sm">
|
|
<div className="font-mono text-lg font-black text-slate-950">{item.value}</div>
|
|
<div className="mt-1 text-xs font-medium text-slate-500">{item.label}</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="platform" className="border-b border-slate-200 bg-white px-4 py-20 sm:px-6">
|
|
<div className="mx-auto max-w-6xl">
|
|
<div className="mx-auto max-w-2xl text-center">
|
|
<p className="text-xs font-bold uppercase tracking-[0.18em] text-slate-400">
|
|
{isEn ? "Platform" : "平台能力"}
|
|
</p>
|
|
<h2 className="mt-3 text-3xl font-black tracking-tight text-slate-950 sm:text-4xl">
|
|
{isEn ? "Like a tidy workspace for weather decisions." : "像整理好的工作区一样阅读天气决策。"}
|
|
</h2>
|
|
</div>
|
|
|
|
<div className="mt-12 grid gap-4 md:grid-cols-3">
|
|
{platformCards.map(({ body, icon: Icon, title }) => (
|
|
<article key={title} className="rounded-lg border border-slate-200 bg-[#fbfbfa] p-6 shadow-sm">
|
|
<div className="mb-5 inline-flex h-10 w-10 items-center justify-center rounded-md border border-slate-200 bg-white text-slate-800">
|
|
<Icon size={19} />
|
|
</div>
|
|
<h3 className="text-lg font-black text-slate-950">{title}</h3>
|
|
<p className="mt-3 text-sm leading-7 text-slate-600">{body}</p>
|
|
</article>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="coverage" className="border-b border-slate-200 bg-[#fbfbfa] px-4 py-20 sm:px-6">
|
|
<div className="mx-auto grid max-w-6xl gap-10 lg:grid-cols-[0.85fr_1.15fr] lg:items-center">
|
|
<div>
|
|
<p className="text-xs font-bold uppercase tracking-[0.18em] text-slate-400">
|
|
{isEn ? "Data Coverage" : "数据覆盖"}
|
|
</p>
|
|
<h2 className="mt-3 text-3xl font-black tracking-tight text-slate-950 sm:text-4xl">
|
|
{isEn ? "Keep the signal clear and the page approachable." : "信号清楚,页面也可以亲和。"}
|
|
</h2>
|
|
</div>
|
|
|
|
<div className="rounded-lg border border-slate-200 bg-white p-3 shadow-sm">
|
|
<div className="grid gap-2 sm:grid-cols-2">
|
|
{coverage.map((item, index) => (
|
|
<div key={item} className="flex items-center gap-3 rounded-md border border-slate-100 bg-[#fbfbfa] px-4 py-3">
|
|
<span className={`grid h-8 w-8 place-items-center rounded-md ${
|
|
index % 3 === 0
|
|
? "bg-sky-100 text-sky-700"
|
|
: index % 3 === 1
|
|
? "bg-emerald-100 text-emerald-700"
|
|
: "bg-amber-100 text-amber-700"
|
|
}`}>
|
|
{index % 3 === 0 ? <CloudSun size={16} /> : index % 3 === 1 ? <LineChart size={16} /> : <Bell size={16} />}
|
|
</span>
|
|
<span className="text-sm font-semibold text-slate-700">{item}</span>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="pricing" className="bg-white px-4 py-20 sm:px-6">
|
|
<div className="mx-auto max-w-6xl">
|
|
<div className="mx-auto max-w-2xl text-center">
|
|
<p className="text-xs font-bold uppercase tracking-[0.18em] text-slate-400">
|
|
{isEn ? "Pricing" : "定价"}
|
|
</p>
|
|
<h2 className="mt-3 text-3xl font-black tracking-tight text-slate-950 sm:text-4xl">
|
|
{isEn ? "Try first, upgrade when it becomes part of your workflow." : "先试用,确认进入工作流后再开通 Pro。"}
|
|
</h2>
|
|
<p className="mt-4 text-base leading-8 text-slate-600">
|
|
{isEn
|
|
? "New users receive one 3-day trial. Monthly and quarterly Pro unlock the full entitlement set."
|
|
: "新用户可领取一次 3 天试用,月付与季度 Pro 解锁完整权益。"}
|
|
</p>
|
|
</div>
|
|
|
|
<div className="mt-12 grid gap-4 md:grid-cols-3">
|
|
<div className="flex flex-col rounded-lg border border-slate-200 bg-[#fbfbfa] p-6 shadow-sm">
|
|
<div className="flex items-center gap-2 text-sm font-bold text-emerald-700">
|
|
<Clock3 size={16} />
|
|
{isEn ? "Trial" : "试用"}
|
|
</div>
|
|
<h3 className="mt-5 text-2xl font-black text-slate-950">
|
|
{isEn ? "3-day free trial" : "3 天免费试用"}
|
|
</h3>
|
|
<p className="mt-3 flex-1 text-sm leading-7 text-slate-600">
|
|
{isEn
|
|
? "Automatically granted once after signup. Trial access matches Pro, except trial accounts do not see the paid Telegram group link."
|
|
: "注册后自动开通一次,体验核心产品;试用期权益和 Pro 一致,除了不显示付费 Telegram 群链接。"}
|
|
</p>
|
|
<Link
|
|
href="/auth/login?next=%2Fterminal&mode=signup"
|
|
className="mt-8 inline-flex h-11 items-center justify-center gap-2 rounded-md border border-slate-200 bg-white text-sm font-bold text-slate-700 shadow-sm hover:border-slate-300 hover:text-slate-950"
|
|
>
|
|
{isEn ? "Start trial" : "开始试用"}
|
|
<ArrowRight size={15} />
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="relative flex flex-col rounded-lg border-2 border-slate-950 bg-white p-6 shadow-[8px_8px_0_rgba(15,23,42,0.12)]">
|
|
<div className="absolute right-4 top-4 rounded-md bg-[#fff3b0] px-2 py-1 text-xs font-black text-slate-900">
|
|
{isEn ? "Popular" : "常用"}
|
|
</div>
|
|
<div className="flex items-center gap-2 text-sm font-bold text-sky-700">
|
|
<Database size={16} />
|
|
{isEn ? "Pro" : "Pro"}
|
|
</div>
|
|
<h3 className="mt-5 text-2xl font-black text-slate-950">
|
|
{isEn ? "Pro Monthly" : "Pro 月付"}
|
|
</h3>
|
|
<p className="mt-3 text-sm leading-7 text-slate-600">
|
|
{isEn
|
|
? "Full Pro access for 30 days, including paid Telegram group eligibility."
|
|
: "完整 Pro 权限 30 天,包含付费 Telegram 群准入资格。"}
|
|
</p>
|
|
<div className="mt-7 flex items-baseline gap-2">
|
|
<span className="font-mono text-5xl font-black text-slate-950">29.9</span>
|
|
<span className="text-sm font-semibold text-slate-500">USDC / 30 天</span>
|
|
</div>
|
|
<p className="mt-2 text-xs font-semibold text-slate-500">
|
|
{isEn ? "Referral first month: 20 USDC" : "使用邀请码首月 20 USDC"}
|
|
</p>
|
|
<ul className="mt-7 space-y-3 border-t border-slate-200 pt-6">
|
|
{(isEn ? PRO_FEATURES_EN : PRO_FEATURES_ZH).map((feature) => (
|
|
<li key={feature} className="flex items-start gap-3">
|
|
<Check size={15} className="mt-0.5 shrink-0 text-slate-500" />
|
|
<span className="text-sm leading-6 text-slate-700">{feature}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
<Link
|
|
href="/account"
|
|
className="mt-8 inline-flex h-11 items-center justify-center gap-2 rounded-md bg-slate-950 text-sm font-bold text-white hover:bg-slate-800"
|
|
>
|
|
{isEn ? "Subscribe monthly" : "订阅月付 Pro"}
|
|
<ArrowRight size={15} />
|
|
</Link>
|
|
</div>
|
|
|
|
<div className="flex flex-col rounded-lg border border-slate-200 bg-[#fbfbfa] p-6 shadow-sm">
|
|
<div className="flex items-center gap-2 text-sm font-bold text-amber-700">
|
|
<LineChart size={16} />
|
|
{isEn ? "Quarterly" : "季度"}
|
|
</div>
|
|
<h3 className="mt-5 text-2xl font-black text-slate-950">
|
|
{isEn ? "Pro Quarterly" : "Pro 季度"}
|
|
</h3>
|
|
<p className="mt-3 flex-1 text-sm leading-7 text-slate-600">
|
|
{isEn
|
|
? "90 days of Pro access for users with steady usage. Lower cost per month."
|
|
: "90 天 Pro 权限,适合稳定使用的个人和团队,折算月成本更低。"}
|
|
</p>
|
|
<div className="mt-7 flex items-baseline gap-2">
|
|
<span className="font-mono text-5xl font-black text-slate-950">79.9</span>
|
|
<span className="text-sm font-semibold text-slate-500">USDC / 90 天</span>
|
|
</div>
|
|
<div className="mt-5 rounded-md border border-slate-200 bg-white px-4 py-3 text-xs font-semibold text-slate-600">
|
|
{isEn
|
|
? "Invite reward: referrer gets +3500 points when invitee subscribes."
|
|
: "邀请奖励:被邀请人付费后,邀请人 +3500 积分。"}
|
|
</div>
|
|
<Link
|
|
href="/account"
|
|
className="mt-8 inline-flex h-11 items-center justify-center gap-2 rounded-md border border-slate-200 bg-white text-sm font-bold text-slate-700 shadow-sm hover:border-slate-300 hover:text-slate-950"
|
|
>
|
|
{isEn ? "Choose quarterly" : "选择季度 Pro"}
|
|
<ArrowRight size={15} />
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function InstitutionalLandingPage() {
|
|
return (
|
|
<I18nProvider>
|
|
<InstitutionalLandingScreen />
|
|
</I18nProvider>
|
|
);
|
|
}
|