File tree Expand file tree Collapse file tree 4 files changed +378
-0
lines changed
Expand file tree Collapse file tree 4 files changed +378
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import DndBookPage from '../pages/DndBookPage'; // New import
1919import AppPage from '../pages/AppPage' ;
2020import IpPage from '../pages/apps/IpPage' ;
2121import WordCounterPage from '../pages/apps/WordCounterPage' ;
22+ import TournamentBracketPage from '../pages/apps/TournamentBracketPage' ;
2223
2324import UsefulLinksPage from '../pages/UsefulLinksPage' ;
2425
@@ -315,6 +316,20 @@ function AnimatedRoutes() {
315316 </ motion . div >
316317 }
317318 />
319+ < Route
320+ path = "/apps/tournament-bracket"
321+ element = {
322+ < motion . div
323+ initial = "initial"
324+ animate = "in"
325+ exit = "out"
326+ variants = { pageVariants }
327+ transition = { pageTransition }
328+ >
329+ < TournamentBracketPage />
330+ </ motion . div >
331+ }
332+ />
318333 { /* D&D specific 404 page */ }
319334 < Route
320335 path = "/dnd/*"
Original file line number Diff line number Diff line change @@ -129,3 +129,14 @@ code {
129129 font-family : serif !important ;
130130 }
131131}
132+
133+ /* Hide arrows from number inputs */
134+ input [type = number ]::-webkit-inner-spin-button ,
135+ input [type = number ]::-webkit-outer-spin-button {
136+ -webkit-appearance : none;
137+ margin : 0 ;
138+ }
139+
140+ input [type = number ] {
141+ -moz-appearance : textfield;
142+ }
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ const apps = [
1515 title : 'Show my IP' ,
1616 description : 'Display your public IP address.' ,
1717 } ,
18+ {
19+ to : '/apps/tournament-bracket' ,
20+ title : 'Tournament Bracket' ,
21+ description : 'Create and manage tournament brackets.' ,
22+ } ,
1823] ;
1924
2025function AppPage ( ) {
You can’t perform that action at this time.
0 commit comments