design update

This commit is contained in:
Tobias 2025-08-02 09:40:34 +02:00
parent 6640e1bacd
commit 27755af2e0
7 changed files with 1216 additions and 358 deletions

View file

@ -14,25 +14,29 @@ function Home() {
return (
<div className="home-container">
<div className="content">
<h1 className="title">Radio Station Hub</h1>
<p className="subtitle">
Create or join a radio station to share music with friends
</p>
<div className="home-content">
<div className="home-header">
<h1 className="home-title">Serena Station Hub</h1>
<p className="home-subtitle">
Create or join a radio station to share music with friends
</p>
</div>
<div className="button-container">
<div className="home-actions">
<button
className="action-button primary"
className="home-btn home-btn-primary"
onClick={handleCreateStation}
>
Create Radio Station
<span className="btn-icon">🎵</span>
Create Station
</button>
<button
className="action-button secondary"
className="home-btn home-btn-secondary"
onClick={handleJoinStation}
>
Join Radio Station
<span className="btn-icon">🎧</span>
Join Station
</button>
</div>
</div>