18 lines
445 B
TypeScript
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>
|
|
);
|
|
}
|