This commit is contained in:
mlogclub
2026-04-25 21:48:09 +08:00
parent 67900d9849
commit abda70eafd
2 changed files with 6 additions and 22 deletions
+5 -21
View File
@@ -1,25 +1,9 @@
import Link from "next/link"
export default function HomePage() {
return (
<main className="flex min-h-svh items-center justify-center bg-[linear-gradient(145deg,#fff7ed_0%,#ffffff_38%,#ecfeff_100%)] px-6 py-16">
<div className="w-full max-w-3xl rounded-[32px] border border-white/70 bg-white/90 p-10 shadow-[0_24px_80px_rgba(15,23,42,0.08)] backdrop-blur">
<div className="inline-flex rounded-full border border-amber-200 bg-amber-50 px-3 py-1 text-xs font-medium tracking-[0.18em] text-amber-900 uppercase">
Landing Page
</div>
<h1 className="mt-6 text-4xl font-semibold tracking-tight text-foreground">TODO</h1>
<p className="mt-4 max-w-2xl text-sm leading-6 text-muted-foreground">
</p>
<div className="mt-8 flex flex-wrap gap-3">
<Link href="/dashboard">
</Link>
<Link href="/dashboard/login">
</Link>
</div>
</div>
</main>
<>
<meta httpEquiv="refresh" content="0; url=dashboard/" />
<main className="flex min-h-svh items-center justify-center bg-background px-6 py-16">
</main>
</>
)
}
File diff suppressed because one or more lines are too long