add rebranding + default password indication
Deploy Nexus Portal to HestiaCP (FTP) / build-and-deploy (push) Successful in 31s

This commit is contained in:
maximus
2026-06-24 14:21:52 +02:00
parent 421b97156a
commit de14810f49
4 changed files with 75 additions and 30 deletions
+37 -12
View File
@@ -2,18 +2,42 @@ import { Link } from 'react-router-dom';
export default function Home() {
return (
<div style={{ textAlign: 'center', marginTop: '10vh' }}>
<h1 style={{
color: '#FFFFFF',
fontSize: '2.5rem',
letterSpacing: '2px',
textTransform: 'uppercase',
marginBottom: '20px'
<div style={{ textAlign: 'center', marginTop: '12vh' }}>
<h1 style={{
color: '#FFF',
fontSize: '4rem',
letterSpacing: '6px',
display: 'flex',
alignItems: 'baseline',
justifyContent: 'center',
gap: '12px',
margin: '0 0 20px 0'
}}>
Bienvenue dans l'infrastructure <span style={{ color: '#00E5FF' }}>GISE</span>
NEXUS
<span style={{
color: '#00E5FF',
fontSize: '1.4rem',
letterSpacing: '2px',
fontWeight: 'normal',
textTransform: 'lowercase'
}}>
by gise
</span>
</h1>
<p style={{
<h2 style={{
color: '#FFFFFF',
fontSize: '1.5rem',
letterSpacing: '2px',
textTransform: 'uppercase',
marginBottom: '20px',
fontWeight: 'normal'
}}>
Bienvenue dans l'infrastructure
</h2>
<p style={{
color: '#A0A0A0',
fontSize: '1.2rem',
maxWidth: '600px',
@@ -25,7 +49,7 @@ export default function Home() {
</p>
{/* LE BOUTON D'ACTION PRINCIPAL REDIRIGE VERS /REGISTER */}
<div style={{ marginTop: '40px' }}>
<div style={{ marginTop: '50px' }}>
<Link to="/register" style={{
display: 'inline-block',
backgroundColor: 'transparent',
@@ -38,7 +62,8 @@ export default function Home() {
textTransform: 'uppercase',
letterSpacing: '1px',
fontWeight: 'bold',
transition: 'all 0.3s ease'
transition: 'all 0.3s ease',
boxShadow: '0 0 15px rgba(0, 229, 255, 0.1)',
}}>
Démarrer le déploiement
</Link>