This commit is contained in:
AntoninoP 2024-07-05 21:49:27 +02:00
parent a3e22b4e20
commit a047d236a3
3 changed files with 32 additions and 22 deletions

View File

@ -88,7 +88,7 @@ const CreateServer = ({ user, onCreateServer }) => {
value={serverVersion}
onChange={(e) => setServerVersion(e.target.value)}
>
<option value="">Version</option>
<option value="1.20.5">Version</option>
<option value="1.20.6">1.20.6</option>
</select>
<button className={styles.btnServCreate} onClick={handleCreateServer}>

View File

@ -72,8 +72,9 @@ const DashboardPage = ({ user }) => {
<Navbar user={user} />
{loading ? (
<Loading />
) : (
) :
<div className={styles.cardsContainer}>
<div className={styles.iptitle}>Adresse de connexions à vos serveurs : {subdomain}.servii.fr</div>
{servers.length === 0 ? (
<NoServer user={user} onCreateServer={handleCreateServer} />
) : (
@ -89,10 +90,11 @@ const DashboardPage = ({ user }) => {
onDeleteClick={() => handleDeleteServer(server.name)}
subdomain={subdomain}
/>
))
)
)
)}
</div>
)}
}
</div>
);
};

View File

@ -25,3 +25,11 @@ html, body {
align-items: center;
justify-content: center;
}
.iptitle{
font-size: 1.5rem;
font-weight: 600;
color: var(--text-color);
font-style: italic;
margin-bottom: 1.5rem;
}