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.

18 lines
445 B
TypeScript
Raw Normal View History

2024-08-01 06:37:16 +01:00
import Link from "next/link";
2024-08-01 06:29:39 +01:00
export default function Home() {
return (
2024-08-01 06:37:16 +01:00
<main className="flex flex-col items-center w-screen h-screen">
<h1>BeatSaber Metrics</h1>
2024-08-01 06:29:39 +01:00
2024-08-01 06:37:16 +01:00
<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>
2024-08-01 06:29:39 +01:00
</main>
);
}