Files
smart-go/web/app/page.tsx
T
2026-04-23 18:58:13 +08:00

24 lines
825 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
}