This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-scoretracker/Frontend/src/app/page.tsx
Liam ebeaf60d5a
Some checks failed
Deploy Frontend / docker (push) Failing after 48s
frontend: remove boilderplate stuff
2024-08-01 06:37:16 +01:00

18 lines
445 B
TypeScript

import Link from "next/link";
export default function Home() {
return (
<main className="flex flex-col items-center w-screen h-screen">
<h1>BeatSaber Metrics</h1>
<p>this website is currently under construction</p>
<Link
className="text-blue-500 hover:opacity-80 transform-gpu transition-all"
href={"https://beatsaber.fascinated.cc/api/"}
>
Visit the API!
</Link>
</main>
);
}