-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved ui and styling of bracket page
- Loading branch information
Showing
3 changed files
with
146 additions
and
546 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
import TournamentBracket from "../../components/TournamentBracket"; | ||
import BracketList from "../../components/BracketList"; | ||
|
||
const BracketPage = () => { | ||
return ( | ||
<div> | ||
<h1 className="text-3xl font-bold text-center my-8">Tournament Manager</h1> | ||
<TournamentBracket /> | ||
<BracketList /> | ||
</div> | ||
); | ||
return ( | ||
<div className="min-h-[70vh] px-7"> | ||
<h1 className="mt-20 mb-10 text-3xl font-semibold tracking-tight text-center"> | ||
Tournament Manager | ||
</h1> | ||
|
||
<TournamentBracket /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default BracketPage; | ||
export default BracketPage; |
Oops, something went wrong.