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

18 lines
445 B
TypeScript
Raw Normal View History

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