Files
HKSingleParty/99_references/supabase-examples/user-management/nextjs-user-management/app/page.tsx
2025-05-28 09:55:51 +08:00

19 lines
516 B
TypeScript

import Link from "next/link";
export default function Home() {
return (
<div className="row">
<div className="col-12">
<h1 className="header">Supabase Auth + Storage</h1>
<p>
Experience our Auth and Storage through a simple profile management example. Create a user
profile and upload an avatar image. Fast, simple, secure.
</p>
</div>
<div className="col-6 form-widget">
<Link href="/login">Auth page</Link>
</div>
</div>
)
}