13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
import Navigation from "@/components/Navigation";
|
|
import LeaderboardSection from "@/components/LeaderboardSection";
|
|
|
|
export default function LeaderboardPage() {
|
|
return (
|
|
<main className="min-h-screen bg-black relative">
|
|
<Navigation />
|
|
<LeaderboardSection />
|
|
</main>
|
|
);
|
|
}
|
|
|