add simple live score feed page
Some checks are pending
Deploy Website / deploy (push) Waiting to run
Deploy Backend / deploy (push) Successful in 4m15s

This commit is contained in:
Lee
2024-10-13 04:40:04 +01:00
parent ee212150fd
commit 4cc5893757
8 changed files with 224 additions and 24 deletions

View File

@ -0,0 +1,20 @@
import { Metadata } from "next";
import ScoreFeed from "@/components/score/score-feed/score-feed";
import Card from "@/components/card";
export const metadata: Metadata = {
title: "Score Feed",
};
export default function ScoresPage() {
return (
<Card className="flex flex-col gap-2 w-full xl:w-[75%]">
<div>
<p className="font-semibold'">Live Score Feed</p>
<p className="text-gray-400">This is the real-time scores being set on ScoreSaber.</p>
</div>
<ScoreFeed />
</Card>
);
}