added ranking

This commit is contained in:
2025-12-03 19:01:47 -06:00
parent d0d20345ff
commit d17ffb4568
6 changed files with 128 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
import Ranking from "@/components/Ranking";
export default function Page() {
return <Ranking/>;
}
+24
View File
@@ -76,3 +76,27 @@
background: #fff;
border-radius: 4px;
}
.total{
background-color: #fff;
justify-content: space-evenly;
}
.rowTotal{
box-shadow: 0 2px 8px #00000045;
}
.primer-lugar {
background-color: #bd8c01 !important; // Oro
font-weight: bold;
}
.segundo-lugar {
background-color: #cfcfcf !important; // Plata
font-weight: bold;
}
.tercer-lugar {
background-color: #ddb288 !important; // Bronce
font-weight: bold;
}