Files
better-auth/docs/app/page.tsx
2024-09-01 21:41:17 +03:00

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>
);
}