add connexions

This commit is contained in:
maximus
2026-06-11 22:39:45 +02:00
parent bf36210670
commit 3d3c4cdde5
8 changed files with 189 additions and 16 deletions
+10 -5
View File
@@ -1,3 +1,5 @@
import { Link } from 'react-router-dom';
export default function Home() {
return (
<div style={{ textAlign: 'center', marginTop: '10vh' }}>
@@ -22,21 +24,24 @@ export default function Home() {
<br />Propulsé par une architecture bare-metal locale.
</p>
{/* Un petit bouton d'action pour la suite */}
{/* LE BOUTON D'ACTION PRINCIPAL REDIRIGE VERS /REGISTER */}
<div style={{ marginTop: '40px' }}>
<button style={{
<Link to="/register" style={{
display: 'inline-block',
backgroundColor: 'transparent',
color: '#00E5FF',
border: '1px solid #00E5FF',
padding: '12px 24px',
fontSize: '1rem',
fontFamily: 'monospace',
cursor: 'pointer',
textDecoration: 'none',
textTransform: 'uppercase',
letterSpacing: '1px'
letterSpacing: '1px',
fontWeight: 'bold',
transition: 'all 0.3s ease'
}}>
Démarrer le déploiement
</button>
</Link>
</div>
</div>
);