Update tailwind, add test pages

This commit is contained in:
2023-12-31 15:13:36 -05:00
parent 2fd4280c74
commit 0f9ac3627f
19 changed files with 103 additions and 331 deletions

View File

@@ -24,15 +24,9 @@ pub fn Layout<'a, G: Html>(
div (class = "container mx-auto px-6 py-3") {
nav (class = "sm:flex sm:justify-center sm:items-center mt-4 hidden") {
div (class = "flex flex-col sm:flex-row"){
a(href = "add-game-form",
a(href = "inventory",
class = "mt-3 text-gray-600 hover:underline sm:mx-3 sm:mt-0"
) { "Add game result" }
a(href = "one-v-one-board",
class = "mt-3 text-gray-600 hover:underline sm:mx-3 sm:mt-0"
) { "1v1 Leaderboard" }
a(href = "overall-board",
class = "mt-3 text-gray-600 hover:underline sm:mx-3 sm:mt-0"
) { "Overall Leaderboard" }
) { "Inventory" }
}
}
}