feat: 优化web

This commit is contained in:
2026-04-23 18:58:13 +08:00
commit 544a2f3428
160 changed files with 27327 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
import Link from 'next/link';
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center gap-6 p-8">
<h1 className="text-2xl font-semibold text-neutral-800">Smart Go · Web</h1>
<p className="max-w-md text-center text-neutral-600">
Go `NEXT_PUBLIC_API_ORIGIN` + PKCE token OAuth
</p>
<div className="flex flex-wrap justify-center gap-3">
<Link href="/login" className="rounded-lg bg-neutral-900 px-5 py-2 text-white">
</Link>
<Link
href="/dashboard"
className="rounded-lg border border-neutral-300 px-5 py-2 text-neutral-800"
>
</Link>
</div>
</main>
);
}