-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import styles from 'styles/tournament-record/TournamentRecord.module.scss'; | ||
|
||
export default function TournamentRecord() { | ||
return ( | ||
<div className={styles.pageWrap}> | ||
<h1 className={styles.title}>명예의 전당</h1> | ||
<div className={styles.leagueButtonWrapper}> | ||
<button>Rookie</button> | ||
<button>Master</button> | ||
<button>Custom</button> | ||
</div> | ||
<div className={styles.winnerImageContainer}>우승자 이미지들</div> | ||
<div className={styles.winnerInfoContainer}> | ||
<p className={styles.userId}>cadet2147</p> | ||
<p className={styles.gameInfo}> | ||
제 5회 정기 토너먼트 루키리그{' '} | ||
<span className={styles.highlighted}>우승자</span> | ||
</p> | ||
<p className={styles.date}>2023.11.11</p> | ||
</div> | ||
<div className={styles.bracketContainer}></div> | ||
</div> | ||
); | ||
} |