add dashboard, home, login, layout, api

This commit is contained in:
maximus
2026-06-04 13:58:32 +02:00
parent fb2a7485bb
commit bf36210670
12 changed files with 497 additions and 231 deletions
+43
View File
@@ -0,0 +1,43 @@
export default function Home() {
return (
<div style={{ textAlign: 'center', marginTop: '10vh' }}>
<h1 style={{
color: '#FFFFFF',
fontSize: '2.5rem',
letterSpacing: '2px',
textTransform: 'uppercase',
marginBottom: '20px'
}}>
Bienvenue dans l'infrastructure <span style={{ color: '#00E5FF' }}>GISE</span>
</h1>
<p style={{
color: '#A0A0A0',
fontSize: '1.2rem',
maxWidth: '600px',
margin: '0 auto',
lineHeight: '1.6'
}}>
Hébergement web, instances VPS et Stockage Cloud haute sécurité.
<br />Propulsé par une architecture bare-metal locale.
</p>
{/* Un petit bouton d'action pour la suite */}
<div style={{ marginTop: '40px' }}>
<button style={{
backgroundColor: 'transparent',
color: '#00E5FF',
border: '1px solid #00E5FF',
padding: '12px 24px',
fontSize: '1rem',
fontFamily: 'monospace',
cursor: 'pointer',
textTransform: 'uppercase',
letterSpacing: '1px'
}}>
Démarrer le déploiement
</button>
</div>
</div>
);
}