Redesign landing page and add Caddy deployment for nomadro.com
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1,25 +1,27 @@
|
||||
import Link from "next/link";
|
||||
import { SiteHeader } from "~/components/layout/site-header";
|
||||
import { SiteFooter } from "~/components/layout/site-footer";
|
||||
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<div className="min-h-screen bg-white">
|
||||
<SiteHeader />
|
||||
<main className="container mx-auto px-4 py-16 md:px-6 md:py-24">
|
||||
<h1 className="text-3xl font-semibold text-neutral-900">关于 Nomadro</h1>
|
||||
<p className="mt-6 max-w-2xl text-neutral-600">
|
||||
Nomadro 是中文数字游民操作系统,致力于帮助更多人从固定工位走向自由生活与自由收入。
|
||||
我们提供城市探索、学习路径、会员社区三大核心模块,从地点、技能、工具到社群,构建完整的数字游民支持体系。
|
||||
<div
|
||||
className="flex min-h-dvh flex-col bg-[#f8f7fc] px-5 py-10"
|
||||
style={{
|
||||
paddingTop: "max(2.5rem, calc(1.5rem + var(--safe-top)))",
|
||||
paddingBottom: "max(2.5rem, calc(1.5rem + var(--safe-bottom)))",
|
||||
}}
|
||||
>
|
||||
<div className="mx-auto w-full max-w-md">
|
||||
<h1 className="text-xl font-bold text-neutral-900">关于 Nomadro</h1>
|
||||
<p className="mt-4 text-sm leading-relaxed text-neutral-600">
|
||||
Nomadro 是中文数字游民操作系统,提供游民导航、地理套利、直播工具箱等模块,
|
||||
帮助更多人从固定工位走向自由生活与自由收入。
|
||||
</p>
|
||||
<Link
|
||||
href="/"
|
||||
className="mt-8 inline-block text-sm font-medium text-neutral-700 hover:text-neutral-900"
|
||||
className="mt-8 inline-block text-sm text-violet-600 active:text-violet-800"
|
||||
>
|
||||
← 返回首页
|
||||
</Link>
|
||||
</main>
|
||||
<SiteFooter />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user