stack/apps/backend/src/app/page.tsx
Konstantin Wohlwend 2b09cfb841 Fix indentation
2024-12-29 11:34:14 -08:00

16 lines
458 B
TypeScript

import Link from "next/link";
export default function Home() {
return (
<div>
Welcome to Stack Auth&apos;s API endpoint.<br />
<br />
Were you looking for <Link href="https://app.stack-auth.com">Stack&apos;s dashboard</Link> instead?<br />
<br />
You can also return to <Link href="https://stack-auth.com">https://stack-auth.com</Link>.<br />
<br />
<Link href="/api/v1">API v1</Link><br />
</div>
);
}