Make website more colorful
All checks were successful
Publish Docker image / Push Docker image to Docker Hub (push) Successful in 1m19s
All checks were successful
Publish Docker image / Push Docker image to Docker Hub (push) Successful in 1m19s
This commit is contained in:
@ -9,9 +9,18 @@ export const Home = () => {
|
||||
|
||||
return (
|
||||
<div className="home-page">
|
||||
<div className="background-overlay">
|
||||
<div className="rotating-gradient"></div>
|
||||
</div>
|
||||
|
||||
<div className="logo-container">
|
||||
<h1 className="logo">ToneGuessr</h1>
|
||||
<p className="tagline">Das Frequenzspiel für Marco :3</p>
|
||||
</div>
|
||||
|
||||
<div className="action-area">
|
||||
<ActionCard title="Raum beitreten" icon={faArrowRightToBracket} onClick={() => {}} />
|
||||
<ActionCard title="Raum erstellen" icon={faPlusSquare} onClick={() => setCurrentState("Game")} />
|
||||
<ActionCard title="Join Room" icon={faArrowRightToBracket} onClick={() => {}} />
|
||||
<ActionCard title="Create Room" icon={faPlusSquare} onClick={() => setCurrentState("Game")} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
Reference in New Issue
Block a user