feat: better api index page

This commit is contained in:
trafficlunar 2026-04-27 23:42:00 +01:00
parent 48df28b285
commit 09a70a87bd

View file

@ -1,3 +1,11 @@
export default function IndexPage() { export default function IndexPage() {
return <p>TomodachiShare API</p>; return (
<div className="absolute size-full flex flex-col justify-center items-center">
<h1 className="text-2xl font-bold">TomodachiShare API</h1>
<p>You probably shouldn't be here</p>
<a href="https://tomodachishare.com" className="pill button mt-4">
Go back
</a>
</div>
);
} }