Skip to content

Commit

Permalink
Wrap API page main in <div>
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Dec 29, 2024
1 parent 6b03536 commit e25394b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions apps/backend/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
import Link from "next/link";

export default function Home() {
return <>
return (
<div>
Welcome to Stack Auth&apos;s API endpoint.<br />
<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 />
</>;
<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>
);
}

0 comments on commit e25394b

Please sign in to comment.