{/* Round Dates */}
diff --git a/src/components/admin/round/ranking-dashboard.tsx b/src/components/admin/round/ranking-dashboard.tsx
new file mode 100644
index 0000000..43a9c96
--- /dev/null
+++ b/src/components/admin/round/ranking-dashboard.tsx
@@ -0,0 +1,14 @@
+'use client'
+
+type RankingDashboardProps = {
+ competitionId: string
+ roundId: string
+}
+
+export function RankingDashboard({ competitionId: _competitionId, roundId: _roundId }: RankingDashboardProps) {
+ return (
+
+ Ranking dashboard coming soon...
+
+ )
+}