mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
20 lines
539 B
TypeScript
20 lines
539 B
TypeScript
import Link from 'next/link';
|
|
import { } from "better-auth/client";
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="flex h-screen flex-col justify-center text-center">
|
|
<h1 className="mb-4 text-2xl font-bold">Hello World</h1>
|
|
<p className="text-fd-muted-foreground">
|
|
You can open{' '}
|
|
<Link
|
|
href="/docs"
|
|
className="text-fd-foreground font-semibold underline"
|
|
>
|
|
/docs
|
|
</Link>{' '}
|
|
and see the documentation.
|
|
</p>
|
|
</main>
|
|
);
|
|
}
|