Redesign landing page and add Caddy deployment for nomadro.com

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
eric
2026-07-11 11:25:50 -05:00
parent e452424f61
commit d2b381ac7b
23 changed files with 730 additions and 513 deletions

View File

@@ -9,7 +9,7 @@ const TAG_COLORS: Record<string, string> = {
: "bg-blue-50 text-blue-700",
: "bg-emerald-50 text-emerald-700",
: "bg-amber-50 text-amber-700",
: "bg-rose-50 text-rose-700",
: "bg-rose-500/15 text-rose-300 ring-1 ring-rose-400/20",
: "bg-violet-50 text-violet-700",
: "bg-neutral-100 text-neutral-700",
};

View File

@@ -1,82 +1,96 @@
"use client";
import Link from "next/link";
import { MapPin, BookOpen, Crown, Zap, Users, ArrowRight } from "lucide-react";
import { MapPin, Zap, Radio, ArrowRight } from "lucide-react";
import { motion } from "framer-motion";
import { ENTRY_PATHS } from "~/lib/data";
const ICON_MAP = {
MapPin,
BookOpen,
Crown,
Zap,
Users,
Radio,
} as const;
const ACCENT_STYLES = {
blue: "border-l-4 border-l-blue-500 bg-gradient-to-r from-blue-50/80 to-white hover:from-blue-100/80",
green: "border-l-4 border-l-emerald-500 bg-gradient-to-r from-emerald-50/80 to-white hover:from-emerald-100/80",
amber: "border-l-4 border-l-amber-500 bg-gradient-to-r from-amber-50/80 to-white hover:from-amber-100/80",
blue: {
border: "border-blue-400/20 hover:border-blue-400/40",
glow: "hover:shadow-blue-500/10",
icon: "from-blue-500 to-cyan-500",
text: "text-blue-300",
},
green: {
border: "border-emerald-400/20 hover:border-emerald-400/40",
glow: "hover:shadow-emerald-500/10",
icon: "from-emerald-500 to-teal-500",
text: "text-emerald-300",
},
rose: {
border: "border-rose-400/20 hover:border-rose-400/40",
glow: "hover:shadow-rose-500/10",
icon: "from-rose-500 to-pink-500",
text: "text-rose-300",
},
} as const;
const CARD_EMOJI: Record<string, string> = {
nav: "🧭",
arbitrage: "⚡",
salon: "🎯",
};
export function EntryGrid() {
return (
<section className="bg-gradient-to-b from-violet-50/30 to-white py-20 md:py-28">
<section className="relative py-20 md:py-28">
<div className="container mx-auto px-4 md:px-6">
<motion.h2
<motion.div
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: "-80px" }}
className="text-center text-2xl font-bold text-neutral-900 md:text-3xl"
className="text-center"
>
🚀
</motion.h2>
<motion.p
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
className="mx-auto mt-3 max-w-2xl text-center text-neutral-600"
>
</motion.p>
<span className="text-3xl">🚀</span>
<h2 className="mt-3 text-2xl font-bold text-white md:text-3xl">
</h2>
<p className="mx-auto mt-3 max-w-2xl text-white/40">
</p>
</motion.div>
<div className="mt-14 grid gap-6 md:grid-cols-3">
<div className="mt-14 grid gap-5 md:grid-cols-3">
{ENTRY_PATHS.map((path, i) => {
const Icon = ICON_MAP[path.icon as keyof typeof ICON_MAP] ?? MapPin;
const Icon = ICON_MAP[path.icon];
const accent = ACCENT_STYLES[path.accent];
const emoji = CARD_EMOJI[path.id] ?? "✨";
return (
<motion.div
key={path.id}
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: "-40px" }}
transition={{ delay: i * 0.08 }}
whileHover={{ y: -4 }}
transition={{ delay: i * 0.1 }}
whileHover={{ y: -6 }}
>
<Link
href={path.href}
target="_blank"
rel="noopener noreferrer"
className={`group block rounded-2xl border border-neutral-200/80 p-6 transition-all hover:shadow-xl ${accent}`}
className={`group glass-card glass-card-hover block rounded-2xl p-6 shadow-lg ${accent.border} ${accent.glow}`}
>
<span className="text-2xl">{emoji}</span>
<Icon className="mt-3 h-10 w-10 text-neutral-600 transition-transform group-hover:scale-110" />
<h3 className="mt-4 text-lg font-bold text-neutral-900">
<div className="flex items-start justify-between">
<span className="text-3xl">{path.emoji}</span>
{path.id === "live" && (
<span className="flex items-center gap-1 rounded-full bg-rose-500/15 px-2 py-0.5 text-[10px] font-medium text-rose-300 ring-1 ring-rose-400/20">
<span className="h-1 w-1 rounded-full bg-rose-400 animate-pulse" />
nomadro.live
</span>
)}
</div>
<div className={`mt-4 inline-flex h-10 w-10 items-center justify-center rounded-xl bg-gradient-to-br ${accent.icon} shadow-lg`}>
<Icon className="h-5 w-5 text-white" />
</div>
<h3 className="mt-4 text-lg font-bold text-white">
{path.title}
</h3>
<p className="mt-2 text-sm text-neutral-600">
<p className="mt-2 text-sm leading-relaxed text-white/40">
{path.description}
</p>
<span className="mt-4 inline-flex items-center gap-1 text-sm font-semibold text-neutral-700 group-hover:text-neutral-900">
<span className={`mt-5 inline-flex items-center gap-1.5 text-sm font-semibold ${accent.text} transition-all group-hover:gap-2.5`}>
{path.cta}
<ArrowRight className="h-4 w-4 transition-transform group-hover:translate-x-2" />
<ArrowRight className="h-4 w-4" />
</span>
</Link>
</motion.div>

View File

@@ -1,61 +1,72 @@
"use client";
import Link from "next/link";
import { MapPin, BookOpen, Crown } from "lucide-react";
import { motion } from "framer-motion";
import { FINAL_CTAS } from "~/lib/data";
import { Button } from "~/components/ui/button";
const ICONS = [MapPin, BookOpen, Crown] as const;
export function FinalCta() {
return (
<section className="relative overflow-hidden bg-gradient-to-br from-violet-900 via-fuchsia-900 to-cyan-900 py-20 text-white md:py-28">
<div className="container mx-auto px-4 md:px-6">
<motion.h2
<section className="relative overflow-hidden py-20 md:py-28">
{/* Background */}
<div className="absolute inset-0 bg-gradient-to-br from-violet-950/80 via-[#0a0a1a] to-cyan-950/60" />
<div
className="absolute inset-0 opacity-30"
style={{
backgroundImage: `
radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(34, 211, 238, 0.2) 0%, transparent 50%)
`,
}}
/>
<div className="container relative mx-auto px-4 md:px-6">
<motion.div
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: "-80px" }}
className="text-center text-2xl font-bold md:text-3xl"
className="text-center"
>
</motion.h2>
<motion.p
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
className="mx-auto mt-3 max-w-xl text-center text-neutral-300"
>
</motion.p>
<span className="text-4xl"></span>
<h2 className="mt-4 text-2xl font-bold text-white md:text-3xl">
</h2>
<p className="mx-auto mt-3 max-w-xl text-white/40">
</p>
</motion.div>
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
className="mt-12 flex flex-col gap-4 sm:flex-row sm:flex-wrap sm:justify-center"
className="mt-12 flex flex-col items-center gap-4 sm:flex-row sm:flex-wrap sm:justify-center"
>
{FINAL_CTAS.map((cta, i) => {
const Icon = ICONS[i];
return (
{FINAL_CTAS.map((cta, i) => (
<motion.div
key={cta.label}
initial={{ opacity: 0, y: 16 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{ delay: i * 0.1 }}
whileHover={{ scale: 1.03 }}
>
<Link
key={cta.label}
href={cta.href}
target="_blank"
rel="noopener noreferrer"
className="group"
>
<Button
variant="outline"
variant={i === 0 ? "default" : "outline"}
size="lg"
className="w-full min-w-[200px] border-white/40 bg-white/10 text-white backdrop-blur-sm hover:bg-white/20 hover:border-white/60 sm:w-auto"
className="min-w-[220px]"
>
<Icon className="mr-2 h-4 w-4" />
<span className="mr-2">{cta.emoji}</span>
{cta.label}
</Button>
</Link>
);
})}
</motion.div>
))}
</motion.div>
</div>
</section>

View File

@@ -1,109 +1,97 @@
"use client";
import Link from "next/link";
import { MapPin, Zap, Users, ArrowRight } from "lucide-react";
import { motion } from "framer-motion";
import { ChevronRight } from "lucide-react";
import { ENTRY_CARDS } from "~/lib/data";
import { Particles } from "~/components/ui/particles";
const ICON_MAP = {
MapPin,
Zap,
Users,
} as const;
const ACCENT_STYLES = {
blue: "from-blue-500/20 to-cyan-500/10 border-blue-300/80 hover:border-blue-400 hover:shadow-2xl",
emerald: "from-emerald-500/20 to-teal-500/10 border-emerald-300/80 hover:border-emerald-400 hover:shadow-2xl",
amber: "from-amber-500/20 to-orange-500/10 border-amber-300/80 hover:border-amber-400 hover:shadow-2xl",
} as const;
const CARD_EMOJI = {
nav: "🧭",
arbitrage: "⚡",
salon: "🎯",
} as const;
const ICON_COLORS = {
blue: "text-blue-600",
emerald: "text-emerald-600",
amber: "text-amber-600",
const CARD_STYLE = {
blue: {
border: "border-blue-200/80",
bar: "bg-blue-500",
emoji: "bg-blue-50",
},
emerald: {
border: "border-emerald-200/80",
bar: "bg-emerald-500",
emoji: "bg-emerald-50",
},
rose: {
border: "border-rose-200/80",
bar: "bg-rose-500",
emoji: "bg-rose-50",
},
} as const;
export function Hero() {
return (
<section className="relative min-h-[100dvh] overflow-hidden bg-gradient-to-br from-violet-50 via-white to-cyan-50">
<Particles />
<div
className="pointer-events-none absolute inset-0 opacity-30"
style={{
backgroundImage: `radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%)`,
}}
/>
<div className="container relative mx-auto flex min-h-[100dvh] flex-col justify-center px-3 py-6 sm:px-4 sm:py-8 md:px-6 md:py-16 lg:py-24">
<div className="mx-auto max-w-4xl text-center">
<motion.div
initial={{ opacity: 0, y: 16 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.1, duration: 0.5 }}
>
<h1 className="text-2xl font-bold tracking-tight sm:text-4xl md:text-5xl lg:text-6xl">
<span className="bg-gradient-to-r from-violet-600 via-fuchsia-500 to-cyan-600 bg-clip-text text-transparent">
</span>{" "}
<span className="text-neutral-800">nomadro</span>
</h1>
</motion.div>
<section
className="flex flex-1 flex-col justify-center px-5 pb-8"
style={{
paddingTop: "max(2rem, calc(1.5rem + var(--safe-top)))",
paddingBottom: "max(2rem, calc(1.5rem + var(--safe-bottom)))",
}}
>
<div className="mx-auto w-full max-w-md sm:max-w-lg">
{/* 标题 */}
<div className="text-center">
<h1 className="text-[2rem] font-bold leading-tight sm:text-5xl">
<span className="text-gradient"></span>
</h1>
<p className="mt-2 text-lg font-medium tracking-[0.2em] text-neutral-400 sm:text-xl">
nomadro
</p>
<p className="mx-auto mt-4 max-w-xs text-[13px] leading-relaxed text-neutral-500 sm:max-w-sm sm:text-sm">
· ·
<br />
</p>
</div>
<motion.div
initial={{ opacity: 0, y: 24 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.3, duration: 0.5 }}
className="mt-6 flex flex-col gap-3 sm:mt-8 sm:gap-4 lg:mt-12 lg:grid lg:grid-cols-3 lg:gap-6"
>
{ENTRY_CARDS.map((card, i) => {
const Icon = ICON_MAP[card.icon];
const accent = ACCENT_STYLES[card.accent];
const emoji = CARD_EMOJI[card.id];
const iconColor = ICON_COLORS[card.accent];
return (
<motion.div
key={card.id}
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.4 + i * 0.1, duration: 0.4 }}
whileHover={{ scale: 1.01, y: -2 }}
{/* 入口卡片 */}
<div className="mt-10 flex flex-col gap-3">
{ENTRY_CARDS.map((card) => {
const style = CARD_STYLE[card.accent];
return (
<Link
key={card.id}
href={card.href}
target="_blank"
rel="noopener noreferrer"
className={`group relative flex items-center gap-3.5 overflow-hidden rounded-2xl border bg-white p-4 shadow-sm transition-all active:scale-[0.98] active:shadow-none sm:gap-4 sm:p-5 ${style.border}`}
>
<span
className={`absolute left-0 top-0 h-full w-1 ${style.bar}`}
/>
<span
className={`flex h-12 w-12 shrink-0 items-center justify-center rounded-xl text-2xl ${style.emoji}`}
>
<Link
href={card.href}
target="_blank"
rel="noopener noreferrer"
className={`group relative flex items-center gap-4 overflow-hidden rounded-2xl border-2 bg-gradient-to-br p-4 transition-all duration-300 active:scale-[0.99] lg:flex-col lg:items-stretch lg:gap-0 lg:p-6 ${accent}`}
>
<div className="absolute -right-6 -top-6 text-5xl opacity-20 transition-transform group-hover:scale-110 group-hover:opacity-30 sm:-right-8 sm:-top-8 sm:text-6xl">
{emoji}
</div>
<div className={`relative flex h-11 w-11 shrink-0 items-center justify-center self-start rounded-xl bg-white/80 shadow-sm lg:h-12 lg:w-12 ${iconColor}`}>
<Icon className="h-5 w-5 group-hover:scale-110 transition-transform lg:h-6 lg:w-6" />
</div>
<div className="relative min-w-0 flex-1 lg:mt-4">
<h2 className="text-base font-bold text-neutral-900 lg:text-xl">
{card.label}
</h2>
<p className="mt-0.5 text-sm text-neutral-600">
{card.title}
</p>
<p className="mt-1 hidden text-xs text-neutral-500 lg:block">
{card.description}
</p>
</div>
<ArrowRight className="relative h-5 w-5 shrink-0 text-neutral-400 transition-all group-hover:translate-x-1 group-hover:text-violet-500 lg:absolute lg:right-4 lg:top-4" />
</Link>
</motion.div>
);
})}
</motion.div>
{card.emoji}
</span>
<div className="min-w-0 flex-1 pr-1">
<div className="flex flex-wrap items-center gap-x-2 gap-y-0.5">
<h2 className="text-[15px] font-semibold text-neutral-900 sm:text-base">
{card.label}
</h2>
{card.id === "live" && (
<span className="rounded bg-rose-500 px-1.5 py-px text-[10px] font-semibold leading-4 text-white">
LIVE
</span>
)}
</div>
<p className="mt-0.5 text-sm font-medium text-neutral-700">
{card.title}
</p>
<p className="mt-1 line-clamp-2 text-xs leading-relaxed text-neutral-400">
{card.description}
</p>
</div>
<ChevronRight className="h-5 w-5 shrink-0 text-neutral-300" />
</Link>
);
})}
</div>
</div>
</section>

View File

@@ -18,29 +18,33 @@ const ACCENT_COLORS = [
"from-amber-500 to-orange-500",
] as const;
export function ValueGrid() {
return (
<section className="bg-gradient-to-b from-white to-violet-50/30 py-20 md:py-28">
<section className="relative py-20 md:py-28">
<div
className="pointer-events-none absolute inset-x-0 top-0 h-px"
style={{
background:
"linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent)",
}}
/>
<div className="container mx-auto px-4 md:px-6">
<motion.h2
<motion.div
initial={{ opacity: 0, y: 12 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true, margin: "-80px" }}
className="text-center text-2xl font-bold text-neutral-900 md:text-3xl"
className="text-center"
>
🎯
</motion.h2>
<motion.p
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
viewport={{ once: true }}
className="mx-auto mt-3 max-w-2xl text-center text-neutral-600"
>
</motion.p>
<span className="text-3xl">🎯</span>
<h2 className="mt-3 text-2xl font-bold text-white md:text-3xl">
</h2>
<p className="mx-auto mt-3 max-w-2xl text-white/40">
</p>
</motion.div>
<div className="mt-14 grid gap-6 sm:grid-cols-2 lg:grid-cols-4">
<div className="mt-14 grid gap-5 sm:grid-cols-2 lg:grid-cols-4">
{VALUE_PROPOSITIONS.map((item, i) => {
const Icon = ICON_MAP[item.icon];
const gradient = ACCENT_COLORS[i];
@@ -52,15 +56,20 @@ export function ValueGrid() {
viewport={{ once: true, margin: "-40px" }}
transition={{ delay: i * 0.08 }}
whileHover={{ y: -4 }}
className="group rounded-2xl border-2 border-neutral-200/80 bg-white p-6 shadow-sm transition-all hover:border-violet-200 hover:shadow-xl hover:shadow-violet-100/50"
className="group glass-card glass-card-hover rounded-2xl p-6"
>
<div className={`inline-flex h-12 w-12 items-center justify-center rounded-xl bg-gradient-to-br ${gradient} text-white shadow-lg transition-transform group-hover:scale-110`}>
<Icon className="h-6 w-6" />
<div className="flex items-center justify-between">
<div className={`inline-flex h-11 w-11 items-center justify-center rounded-xl bg-gradient-to-br ${gradient} text-white shadow-lg transition-transform group-hover:scale-110`}>
<Icon className="h-5 w-5" />
</div>
<span className="text-2xl opacity-40 transition-opacity group-hover:opacity-70">
{item.emoji}
</span>
</div>
<h3 className="mt-4 font-semibold text-neutral-900">
<h3 className="mt-4 text-sm font-semibold leading-snug text-white/90">
{item.title}
</h3>
<p className="mt-2 text-sm text-neutral-600">
<p className="mt-2 text-xs leading-relaxed text-white/35">
{item.description}
</p>
</motion.div>