This commit is contained in:
+1
-184
@@ -1,184 +1 @@
|
||||
.counter {
|
||||
font-size: 16px;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
color: var(--accent);
|
||||
background: var(--accent-bg);
|
||||
border: 2px solid transparent;
|
||||
transition: border-color 0.3s;
|
||||
margin-bottom: 24px;
|
||||
|
||||
&:hover {
|
||||
border-color: var(--accent-border);
|
||||
}
|
||||
&:focus-visible {
|
||||
outline: 2px solid var(--accent);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.hero {
|
||||
position: relative;
|
||||
|
||||
.base,
|
||||
.framework,
|
||||
.vite {
|
||||
inset-inline: 0;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.base {
|
||||
width: 170px;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.framework,
|
||||
.vite {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.framework {
|
||||
z-index: 1;
|
||||
top: 34px;
|
||||
height: 28px;
|
||||
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
|
||||
scale(1.4);
|
||||
}
|
||||
|
||||
.vite {
|
||||
z-index: 0;
|
||||
top: 107px;
|
||||
height: 26px;
|
||||
width: auto;
|
||||
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
|
||||
scale(0.8);
|
||||
}
|
||||
}
|
||||
|
||||
#center {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 25px;
|
||||
place-content: center;
|
||||
place-items: center;
|
||||
flex-grow: 1;
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
padding: 32px 20px 24px;
|
||||
gap: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
#next-steps {
|
||||
display: flex;
|
||||
border-top: 1px solid var(--border);
|
||||
text-align: left;
|
||||
|
||||
& > div {
|
||||
flex: 1 1 0;
|
||||
padding: 32px;
|
||||
@media (max-width: 1024px) {
|
||||
padding: 24px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.icon {
|
||||
margin-bottom: 16px;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
#docs {
|
||||
border-right: 1px solid var(--border);
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
border-right: none;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
}
|
||||
|
||||
#next-steps ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin: 32px 0 0;
|
||||
|
||||
.logo {
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--text-h);
|
||||
font-size: 16px;
|
||||
border-radius: 6px;
|
||||
background: var(--social-bg);
|
||||
display: flex;
|
||||
padding: 6px 12px;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
text-decoration: none;
|
||||
transition: box-shadow 0.3s;
|
||||
|
||||
&:hover {
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
.button-icon {
|
||||
height: 18px;
|
||||
width: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
margin-top: 20px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
|
||||
li {
|
||||
flex: 1 1 calc(50% - 8px);
|
||||
}
|
||||
|
||||
a {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#spacer {
|
||||
height: 88px;
|
||||
border-top: 1px solid var(--border);
|
||||
@media (max-width: 1024px) {
|
||||
height: 48px;
|
||||
}
|
||||
}
|
||||
|
||||
.ticks {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
|
||||
&::before,
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -4.5px;
|
||||
border: 5px solid transparent;
|
||||
}
|
||||
|
||||
&::before {
|
||||
left: 0;
|
||||
border-left-color: var(--border);
|
||||
}
|
||||
&::after {
|
||||
right: 0;
|
||||
border-right-color: var(--border);
|
||||
}
|
||||
}
|
||||
@import "tailwindcss";
|
||||
+5
-117
@@ -1,122 +1,10 @@
|
||||
import { useState } from 'react'
|
||||
import reactLogo from './assets/react.svg'
|
||||
import viteLogo from './assets/vite.svg'
|
||||
import heroImg from './assets/hero.png'
|
||||
import './App.css'
|
||||
import GiseLandingPage from './pages/LandingPage';
|
||||
import './App.css';
|
||||
|
||||
function App() {
|
||||
const [count, setCount] = useState(0)
|
||||
|
||||
return (
|
||||
<>
|
||||
<section id="center">
|
||||
<div className="hero">
|
||||
<img src={heroImg} className="base" width="170" height="179" alt="" />
|
||||
<img src={reactLogo} className="framework" alt="React logo" />
|
||||
<img src={viteLogo} className="vite" alt="Vite logo" />
|
||||
</div>
|
||||
<div>
|
||||
<h1>Get started</h1>
|
||||
<p>
|
||||
Edit <code>src/App.tsx</code> and save to test <code>HMR</code>
|
||||
</p>
|
||||
</div>
|
||||
<button
|
||||
type="button"
|
||||
className="counter"
|
||||
onClick={() => setCount((count) => count + 1)}
|
||||
>
|
||||
Count is {count}
|
||||
</button>
|
||||
</section>
|
||||
|
||||
<div className="ticks"></div>
|
||||
|
||||
<section id="next-steps">
|
||||
<div id="docs">
|
||||
<svg className="icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#documentation-icon"></use>
|
||||
</svg>
|
||||
<h2>Documentation</h2>
|
||||
<p>Your questions, answered</p>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://vite.dev/" target="_blank">
|
||||
<img className="logo" src={viteLogo} alt="" />
|
||||
Explore Vite
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://react.dev/" target="_blank">
|
||||
<img className="button-icon" src={reactLogo} alt="" />
|
||||
Learn more
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div id="social">
|
||||
<svg className="icon" role="presentation" aria-hidden="true">
|
||||
<use href="/icons.svg#social-icon"></use>
|
||||
</svg>
|
||||
<h2>Connect with us</h2>
|
||||
<p>Join the Vite community</p>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://github.com/vitejs/vite" target="_blank">
|
||||
<svg
|
||||
className="button-icon"
|
||||
role="presentation"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<use href="/icons.svg#github-icon"></use>
|
||||
</svg>
|
||||
GitHub
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://chat.vite.dev/" target="_blank">
|
||||
<svg
|
||||
className="button-icon"
|
||||
role="presentation"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<use href="/icons.svg#discord-icon"></use>
|
||||
</svg>
|
||||
Discord
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://x.com/vite_js" target="_blank">
|
||||
<svg
|
||||
className="button-icon"
|
||||
role="presentation"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<use href="/icons.svg#x-icon"></use>
|
||||
</svg>
|
||||
X.com
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://bsky.app/profile/vite.dev" target="_blank">
|
||||
<svg
|
||||
className="button-icon"
|
||||
role="presentation"
|
||||
aria-hidden="true"
|
||||
>
|
||||
<use href="/icons.svg#bluesky-icon"></use>
|
||||
</svg>
|
||||
Bluesky
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<div className="ticks"></div>
|
||||
<section id="spacer"></section>
|
||||
</>
|
||||
)
|
||||
<GiseLandingPage />
|
||||
);
|
||||
}
|
||||
|
||||
export default App
|
||||
export default App;
|
||||
-111
@@ -1,111 +0,0 @@
|
||||
:root {
|
||||
--text: #6b6375;
|
||||
--text-h: #08060d;
|
||||
--bg: #fff;
|
||||
--border: #e5e4e7;
|
||||
--code-bg: #f4f3ec;
|
||||
--accent: #aa3bff;
|
||||
--accent-bg: rgba(170, 59, 255, 0.1);
|
||||
--accent-border: rgba(170, 59, 255, 0.5);
|
||||
--social-bg: rgba(244, 243, 236, 0.5);
|
||||
--shadow:
|
||||
rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
|
||||
|
||||
--sans: system-ui, 'Segoe UI', Roboto, sans-serif;
|
||||
--heading: system-ui, 'Segoe UI', Roboto, sans-serif;
|
||||
--mono: ui-monospace, Consolas, monospace;
|
||||
|
||||
font: 18px/145% var(--sans);
|
||||
letter-spacing: 0.18px;
|
||||
color-scheme: light dark;
|
||||
color: var(--text);
|
||||
background: var(--bg);
|
||||
font-synthesis: none;
|
||||
text-rendering: optimizeLegibility;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--text: #9ca3af;
|
||||
--text-h: #f3f4f6;
|
||||
--bg: #16171d;
|
||||
--border: #2e303a;
|
||||
--code-bg: #1f2028;
|
||||
--accent: #c084fc;
|
||||
--accent-bg: rgba(192, 132, 252, 0.15);
|
||||
--accent-border: rgba(192, 132, 252, 0.5);
|
||||
--social-bg: rgba(47, 48, 58, 0.5);
|
||||
--shadow:
|
||||
rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
|
||||
}
|
||||
|
||||
#social .button-icon {
|
||||
filter: invert(1) brightness(2);
|
||||
}
|
||||
}
|
||||
|
||||
#root {
|
||||
width: 1126px;
|
||||
max-width: 100%;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
border-inline: 1px solid var(--border);
|
||||
min-height: 100svh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
font-family: var(--heading);
|
||||
font-weight: 500;
|
||||
color: var(--text-h);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 56px;
|
||||
letter-spacing: -1.68px;
|
||||
margin: 32px 0;
|
||||
@media (max-width: 1024px) {
|
||||
font-size: 36px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
font-size: 24px;
|
||||
line-height: 118%;
|
||||
letter-spacing: -0.24px;
|
||||
margin: 0 0 8px;
|
||||
@media (max-width: 1024px) {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
code,
|
||||
.counter {
|
||||
font-family: var(--mono);
|
||||
display: inline-flex;
|
||||
border-radius: 4px;
|
||||
color: var(--text-h);
|
||||
}
|
||||
|
||||
code {
|
||||
font-size: 15px;
|
||||
line-height: 135%;
|
||||
padding: 4px 8px;
|
||||
background: var(--code-bg);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,459 @@
|
||||
import React, { useState } from 'react';
|
||||
import {
|
||||
Shield,
|
||||
Server,
|
||||
Lock,
|
||||
Activity,
|
||||
CheckCircle2,
|
||||
ArrowRight,
|
||||
FileText,
|
||||
Building2,
|
||||
ChevronRight,
|
||||
Menu,
|
||||
X,
|
||||
Database,
|
||||
Clock,
|
||||
ExternalLink,
|
||||
Users,
|
||||
ShieldCheck,
|
||||
HardDrive
|
||||
} from 'lucide-react';
|
||||
|
||||
export const GiseLandingPage: React.FC = () => {
|
||||
const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false);
|
||||
const [activeTab, setActiveTab] = useState<'sovereignty' | 'cyber' | 'vciso'>('sovereignty');
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-slate-950 text-slate-100 font-sans antialiased selection:bg-emerald-500 selection:text-slate-950">
|
||||
|
||||
{/* 1. NAVBAR */}
|
||||
<nav className="sticky top-0 z-50 backdrop-blur-md bg-slate-950/80 border-b border-slate-800/80">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="flex items-center justify-between h-20">
|
||||
{/* Logo */}
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="h-10 w-10 rounded-xl bg-linear-to-br from-blue-600 to-emerald-500 flex items-center justify-center shadow-lg shadow-emerald-500/10">
|
||||
<Shield className="h-6 w-6 text-white" />
|
||||
</div>
|
||||
<div>
|
||||
<span className="text-2xl font-black tracking-wider text-white">GISE</span>
|
||||
<span className="block text-[10px] uppercase tracking-widest text-emerald-400 font-semibold -mt-1">
|
||||
Powered by AEGIS
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Nav Links (Desktop) */}
|
||||
<div className="hidden md:flex items-center gap-8 text-sm font-medium text-slate-300">
|
||||
<a href="#services" className="hover:text-emerald-400 transition-colors">Services</a>
|
||||
<a href="#aegis" className="hover:text-emerald-400 transition-colors">Plateforme AEGIS</a>
|
||||
<a href="#expertise" className="hover:text-emerald-400 transition-colors">Expertise & Conformité</a>
|
||||
<a href="#tarifs" className="hover:text-emerald-400 transition-colors">Offres</a>
|
||||
</div>
|
||||
|
||||
{/* Actions (Desktop) */}
|
||||
<div className="hidden md:flex items-center gap-4">
|
||||
<a
|
||||
href="#audit"
|
||||
className="text-xs font-semibold px-4 py-2.5 rounded-lg border border-slate-700 text-slate-300 hover:bg-slate-800 hover:text-white transition-all"
|
||||
>
|
||||
Espace Client AEGIS
|
||||
</a>
|
||||
<a
|
||||
href="#audit"
|
||||
className="text-xs font-semibold px-4 py-2.5 rounded-lg bg-emerald-500 text-slate-950 hover:bg-emerald-400 transition-all shadow-md shadow-emerald-500/20"
|
||||
>
|
||||
Demander un Audit
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{/* Mobile Menu Button */}
|
||||
<div className="md:hidden">
|
||||
<button
|
||||
onClick={() => setIsMobileMenuOpen(!isMobileMenuOpen)}
|
||||
className="p-2 rounded-lg text-slate-400 hover:text-white hover:bg-slate-900"
|
||||
>
|
||||
{isMobileMenuOpen ? <X className="h-6 w-6" /> : <Menu className="h-6 w-6" />}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Mobile Dropdown */}
|
||||
{isMobileMenuOpen && (
|
||||
<div className="md:hidden border-b border-slate-800 bg-slate-950 px-4 pt-2 pb-6 space-y-3">
|
||||
<a href="#services" className="block py-2 text-slate-300 hover:text-emerald-400">Services</a>
|
||||
<a href="#aegis" className="block py-2 text-slate-300 hover:text-emerald-400">Plateforme AEGIS</a>
|
||||
<a href="#expertise" className="block py-2 text-slate-300 hover:text-emerald-400">Expertise & Conformité</a>
|
||||
<a href="#tarifs" className="block py-2 text-slate-300 hover:text-emerald-400">Offres</a>
|
||||
<div className="pt-4 flex flex-col gap-2">
|
||||
<a href="#audit" className="w-full text-center py-2.5 text-xs font-semibold rounded-lg bg-emerald-500 text-slate-950">
|
||||
Demander un Audit
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</nav>
|
||||
|
||||
{/* 2. HERO SECTION */}
|
||||
<section className="relative overflow-hidden pt-20 pb-28 md:pt-32 md:pb-40">
|
||||
{/* Glow background */}
|
||||
<div className="absolute top-1/4 left-1/2 -translate-x-1/2 -translate-y-1/2 w-150 h-87.5 bg-emerald-500/10 blur-[140px] rounded-full pointer-events-none" />
|
||||
<div className="absolute top-1/3 left-1/3 w-100 h-75 bg-blue-600/10 blur-[120px] rounded-full pointer-events-none" />
|
||||
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
|
||||
<div className="max-w-3xl mx-auto text-center space-y-8">
|
||||
|
||||
{/* Badge */}
|
||||
<div className="inline-flex items-center gap-2 px-3.5 py-1.5 rounded-full bg-slate-900 border border-slate-800 text-xs text-emerald-400 font-medium">
|
||||
<ShieldCheck className="h-4 w-4" />
|
||||
<span>Conformité NIS2 & RGPD • Cloud 100% Souverain Belge</span>
|
||||
</div>
|
||||
|
||||
{/* Main Headline */}
|
||||
<h1 className="text-4xl sm:text-6xl font-extrabold tracking-tight text-white leading-[1.15]">
|
||||
L'Infogérance Souveraine & la <span className="text-transparent bg-clip-text bg-linear-to-r from-emerald-400 to-blue-500">Cyber-Résilience</span> pour PME
|
||||
</h1>
|
||||
|
||||
{/* Subtitle */}
|
||||
<p className="text-lg sm:text-xl text-slate-400 leading-relaxed font-normal">
|
||||
GISE protège et gère l'infrastructure des cabinets d'avocats, cliniques et professionnels exigeants. Reprenez le contrôle de vos données sans dépendre des géants américains.
|
||||
</p>
|
||||
|
||||
{/* CTAs */}
|
||||
<div className="flex flex-col sm:flex-row items-center justify-center gap-4 pt-4">
|
||||
<a
|
||||
href="#audit"
|
||||
className="w-full sm:w-auto px-8 py-4 rounded-xl bg-emerald-500 text-slate-950 font-bold hover:bg-emerald-400 transition-all shadow-xl shadow-emerald-500/20 flex items-center justify-center gap-2 text-sm"
|
||||
>
|
||||
<span>Auditer mon infrastructure</span>
|
||||
<ArrowRight className="h-4 w-4" />
|
||||
</a>
|
||||
<a
|
||||
href="#aegis"
|
||||
className="w-full sm:w-auto px-8 py-4 rounded-xl bg-slate-900 border border-slate-800 text-slate-300 font-semibold hover:bg-slate-800 hover:text-white transition-all flex items-center justify-center gap-2 text-sm"
|
||||
>
|
||||
<span>Découvrir le Trust Center AEGIS</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
{/* Feature Badges */}
|
||||
<div className="pt-10 grid grid-cols-2 md:grid-cols-4 gap-4 text-left border-t border-slate-800/80">
|
||||
<div>
|
||||
<span className="text-2xl font-black text-white">100%</span>
|
||||
<p className="text-xs text-slate-400">Hébergé en Belgique (Bare-Metal)</p>
|
||||
</div>
|
||||
<div>
|
||||
<span className="text-2xl font-black text-emerald-400">< 4h</span>
|
||||
<p className="text-xs text-slate-400">Garantie de Redémarrage (PRA)</p>
|
||||
</div>
|
||||
<div>
|
||||
<span className="text-2xl font-black text-white">Zero Trust</span>
|
||||
<p className="text-xs text-slate-400">Architecture Réseau Étanche</p>
|
||||
</div>
|
||||
<div>
|
||||
<span className="text-2xl font-black text-blue-400">vCISO</span>
|
||||
<p className="text-xs text-slate-400">Accompagnement Réglementaire</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 3. PLATFORM PREVIEW (AEGIS) */}
|
||||
<section id="aegis" className="py-20 bg-slate-900/50 border-y border-slate-800/80 relative">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
|
||||
<div className="text-center max-w-2xl mx-auto mb-16 space-y-4">
|
||||
<h2 className="text-xs font-bold uppercase tracking-widest text-emerald-400">Espace Privé Dirigeant</h2>
|
||||
<p className="text-3xl font-bold text-white">AEGIS : Votre tableau de bord de réassurance en temps réel</p>
|
||||
<p className="text-slate-400 text-sm">
|
||||
Fini l'informatique "boîte noire". visualisez vos nœuds de calcul, la preuve de vos sauvegardes immuables et les menaces neutralisées.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{/* UI Mockup Card */}
|
||||
<div className="rounded-2xl bg-slate-950 border border-slate-800 shadow-2xl p-6 md:p-8 space-y-6">
|
||||
{/* Window bar */}
|
||||
<div className="flex items-center justify-between border-b border-slate-800 pb-4">
|
||||
<div className="flex items-center gap-2">
|
||||
<div className="w-3 h-3 rounded-full bg-red-500/80" />
|
||||
<div className="w-3 h-3 rounded-full bg-yellow-500/80" />
|
||||
<div className="w-3 h-3 rounded-full bg-emerald-500/80" />
|
||||
<span className="text-xs text-slate-500 ml-2 font-mono">https://aegis.gise.be/trust-center</span>
|
||||
</div>
|
||||
<div className="flex items-center gap-2 bg-emerald-500/10 px-3 py-1 rounded-full text-[11px] font-medium text-emerald-400">
|
||||
<span className="w-2 h-2 rounded-full bg-emerald-400 animate-pulse" />
|
||||
Infrastructures Opérationnelles (100% SLA)
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Mock Widgets Grid */}
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
|
||||
|
||||
{/* Widget 1 */}
|
||||
<div className="bg-slate-900/80 rounded-xl p-5 border border-slate-800 space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<span className="text-xs font-semibold text-slate-400">Supervision Cluster</span>
|
||||
<Activity className="h-4 w-4 text-emerald-400" />
|
||||
</div>
|
||||
<div className="space-y-2">
|
||||
<div className="flex justify-between items-center text-sm">
|
||||
<span className="text-slate-200">Proxmox Bare-Metal #01</span>
|
||||
<span className="text-xs text-emerald-400 font-bold">99.98%</span>
|
||||
</div>
|
||||
<div className="w-full bg-slate-800 rounded-full h-1.5">
|
||||
<div className="bg-emerald-400 h-1.5 rounded-full" style={{ width: '99%' }} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Widget 2 */}
|
||||
<div className="bg-slate-900/80 rounded-xl p-5 border border-slate-800 space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<span className="text-xs font-semibold text-slate-400">Sauvegardes Immuables (PBS)</span>
|
||||
<Database className="h-4 w-4 text-blue-400" />
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<p className="text-xl font-bold text-white">Dernier Check : Réussi</p>
|
||||
<p className="text-xs text-slate-400">PRA garanti < 4 heures • Restauration testée</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Widget 3 */}
|
||||
<div className="bg-slate-900/80 rounded-xl p-5 border border-slate-800 space-y-3">
|
||||
<div className="flex items-center justify-between">
|
||||
<span className="text-xs font-semibold text-slate-400">Posture de Sécurité (30j)</span>
|
||||
<Shield className="h-4 w-4 text-emerald-400" />
|
||||
</div>
|
||||
<div className="space-y-1">
|
||||
<p className="text-xl font-bold text-white">1 420 Menaces Bloquées</p>
|
||||
<p className="text-xs text-slate-400">Pare-feu OPNsense & Active DNS Active</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 4. NOS SERVICES (3 POLES) */}
|
||||
<section id="services" className="py-24 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="text-center max-w-2xl mx-auto mb-16 space-y-4">
|
||||
<h2 className="text-xs font-bold uppercase tracking-widest text-emerald-400">Offre Globale</h2>
|
||||
<p className="text-3xl sm:text-4xl font-bold text-white">Une couverture complète de votre système d'information</p>
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
|
||||
{/* Card 1 */}
|
||||
<div className="rounded-2xl bg-slate-900/60 border border-slate-800 p-8 hover:border-emerald-500/50 transition-all space-y-6">
|
||||
<div className="h-12 w-12 rounded-xl bg-emerald-500/10 text-emerald-400 flex items-center justify-center">
|
||||
<Server className="h-6 w-6" />
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-white">1. Socle Souverain & Infogérance</h3>
|
||||
<p className="text-slate-400 text-sm leading-relaxed">
|
||||
Assainissement et migration de votre matériel vers un Cloud Privé local (Proxmox), protégé par pare-feu OPNsense et VPN WireGuard.
|
||||
</p>
|
||||
<ul className="space-y-2 text-xs text-slate-300">
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Migration Cloud Privé Souverain</li>
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Segmentation réseau Zero-Trust</li>
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Support ITSM & Helpdesk VIP</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{/* Card 2 */}
|
||||
<div className="rounded-2xl bg-slate-900/60 border border-slate-800 p-8 hover:border-emerald-500/50 transition-all space-y-6">
|
||||
<div className="h-12 w-12 rounded-xl bg-blue-500/10 text-blue-400 flex items-center justify-center">
|
||||
<Shield className="h-6 w-6" />
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-white">2. Continuité & Anti-Ransomware</h3>
|
||||
<p className="text-slate-400 text-sm leading-relaxed">
|
||||
Protection contre les arrêts d'activité. Vos sauvegardes sont chiffrées hors-site avec engagement de restauration en moins de 4h.
|
||||
</p>
|
||||
<ul className="space-y-2 text-xs text-slate-300">
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Guarantee PRA < 4 heures</li>
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Sauvegardes immuables PBS</li>
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> SOC Passif & Filtrage DNS</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{/* Card 3 */}
|
||||
<div className="rounded-2xl bg-slate-900/60 border border-slate-800 p-8 hover:border-emerald-500/50 transition-all space-y-6">
|
||||
<div className="h-12 w-12 rounded-xl bg-purple-500/10 text-purple-400 flex items-center justify-center">
|
||||
<FileText className="h-6 w-6" />
|
||||
</div>
|
||||
<h3 className="text-xl font-bold text-white">3. vCISO & Conformité NIS2</h3>
|
||||
<p className="text-slate-400 text-sm leading-relaxed">
|
||||
Mise en conformité avec les réglementations belges (CyFun/CCB) et européennes (NIS2, RGPD) pilotée par un directeur sécurité dédié.
|
||||
</p>
|
||||
<ul className="space-y-2 text-xs text-slate-300">
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Direction Sécurité Virtualisée</li>
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Rédaction de PSSI & Audits</li>
|
||||
<li className="flex items-center gap-2"><CheckCircle2 className="h-4 w-4 text-emerald-400" /> Simulation Phishing collaborateurs</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 5. SECTEURS CIBLES */}
|
||||
<section id="expertise" className="py-20 bg-slate-900/30 border-t border-slate-800/80">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
|
||||
<div className="space-y-6">
|
||||
<h2 className="text-xs font-bold uppercase tracking-widest text-emerald-400">Cibles Privilégiées</h2>
|
||||
<p className="text-3xl font-bold text-white">Conçu pour les structures qui ne peuvent pas se permettre une fuite de données</p>
|
||||
<p className="text-slate-400 text-sm leading-relaxed">
|
||||
Les obligations réglementaires et les cyberattaques ciblent aujourd'hui en priorité les PME détenant des données confidentielles ou financières.
|
||||
</p>
|
||||
|
||||
<div className="space-y-4 pt-2">
|
||||
<div className="flex gap-4 p-4 rounded-xl bg-slate-900 border border-slate-800">
|
||||
<Building2 className="h-6 w-6 text-emerald-400 shrink-0" />
|
||||
<div>
|
||||
<h4 className="font-semibold text-white text-sm">Cabinets d'Avocats & Notaires</h4>
|
||||
<p className="text-xs text-slate-400">Protection absolue du secret professionnel et des pièces confidentielles.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-4 p-4 rounded-xl bg-slate-900 border border-slate-800">
|
||||
<Users className="h-6 w-6 text-blue-400 shrink-0" />
|
||||
<div>
|
||||
<h4 className="font-semibold text-white text-sm">Fiduciaires & Bureaux Comptables</h4>
|
||||
<p className="text-xs text-slate-400">Garantie zéro interruption durant les clôtures fiscales critiques.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-4 p-4 rounded-xl bg-slate-900 border border-slate-800">
|
||||
<ShieldCheck className="h-6 w-6 text-purple-400 shrink-0" />
|
||||
<div>
|
||||
<h4 className="font-semibold text-white text-sm">Cliniques Privées & Santé</h4>
|
||||
<p className="text-xs text-slate-400">Hébergement sécurisé des données médicales conforme au cadre CyFun.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Interactive Tab Box */}
|
||||
<div className="rounded-2xl bg-slate-950 border border-slate-800 p-6 md:p-8 space-y-6">
|
||||
<h3 className="text-lg font-bold text-white">Pourquoi choisir GISE plutôt qu'un MSP classique ?</h3>
|
||||
|
||||
<div className="space-y-4 text-sm text-slate-300">
|
||||
<div className="p-4 rounded-xl bg-slate-900/80 border border-slate-800">
|
||||
<span className="font-bold text-emerald-400">Indépendance vis-à-vis des GAFAM :</span>
|
||||
<p className="text-xs text-slate-400 mt-1">Vos données ne sont pas stockées chez des acteurs américains soumis au Cloud Act.</p>
|
||||
</div>
|
||||
|
||||
<div className="p-4 rounded-xl bg-slate-900/80 border border-slate-800">
|
||||
<span className="font-bold text-emerald-400">Engagement contractuel clair :</span>
|
||||
<p className="text-xs text-slate-400 mt-1">Nous vendons une garantie de restauration sous 4h, pas des heures de maintenance floues.</p>
|
||||
</div>
|
||||
|
||||
<div className="p-4 rounded-xl bg-slate-900/80 border border-slate-800">
|
||||
<span className="font-bold text-emerald-400">Transparence totale via AEGIS :</span>
|
||||
<p className="text-xs text-slate-400 mt-1">Vous disposez d'un tableau de bord de réassurance accessible 24/7 pour votre direction.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 6. FORMULAIRE D'AUDIT / CONTACT */}
|
||||
<section id="audit" className="py-24 max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div className="rounded-3xl bg-linear-to-b from-slate-900 to-slate-950 border border-slate-800 p-8 md:p-12 space-y-8 shadow-2xl relative overflow-hidden">
|
||||
|
||||
<div className="text-center space-y-4 max-w-2xl mx-auto">
|
||||
<h2 className="text-3xl font-bold text-white">Demandez votre audit de sécurité initial</h2>
|
||||
<p className="text-slate-400 text-sm">
|
||||
Analyse sans engagement de votre réseau, de vos sauvegardes et de votre exposition aux menaces.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<form className="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-3xl mx-auto" onSubmit={(e) => e.preventDefault()}>
|
||||
<div>
|
||||
<label className="block text-xs font-semibold text-slate-300 mb-2">Nom & Prénom</label>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Jean Dupont"
|
||||
className="w-full px-4 py-3 rounded-xl bg-slate-950 border border-slate-800 text-white text-sm focus:outline-none focus:border-emerald-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block text-xs font-semibold text-slate-300 mb-2">Société / Organisation</label>
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Cabinet Dupont & Associés"
|
||||
className="w-full px-4 py-3 rounded-xl bg-slate-950 border border-slate-800 text-white text-sm focus:outline-none focus:border-emerald-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block text-xs font-semibold text-slate-300 mb-2">E-mail professionnel</label>
|
||||
<input
|
||||
type="email"
|
||||
placeholder="j.dupont@cabinet.be"
|
||||
className="w-full px-4 py-3 rounded-xl bg-slate-950 border border-slate-800 text-white text-sm focus:outline-none focus:border-emerald-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label className="block text-xs font-semibold text-slate-300 mb-2">Téléphone</label>
|
||||
<input
|
||||
type="tel"
|
||||
placeholder="+32 2 000 00 00"
|
||||
className="w-full px-4 py-3 rounded-xl bg-slate-950 border border-slate-800 text-white text-sm focus:outline-none focus:border-emerald-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="md:col-span-2">
|
||||
<label className="block text-xs font-semibold text-slate-300 mb-2">Taille du parc informatique</label>
|
||||
<select className="w-full px-4 py-3 rounded-xl bg-slate-950 border border-slate-800 text-slate-300 text-sm focus:outline-none focus:border-emerald-500">
|
||||
<option>5 à 15 postes</option>
|
||||
<option>15 à 50 postes</option>
|
||||
<option>Plus de 50 postes</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div className="md:col-span-2 pt-2">
|
||||
<button
|
||||
type="submit"
|
||||
className="w-full py-4 rounded-xl bg-emerald-500 text-slate-950 font-bold hover:bg-emerald-400 transition-all shadow-lg shadow-emerald-500/20 text-sm"
|
||||
>
|
||||
Demander un diagnostic offert
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* 7. FOOTER */}
|
||||
<footer className="border-t border-slate-800/80 bg-slate-950 py-12 text-slate-500 text-xs">
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 flex flex-col md:flex-row items-center justify-between gap-6">
|
||||
<div className="flex items-center gap-3">
|
||||
<div className="h-7 w-7 rounded-lg bg-emerald-500 flex items-center justify-center text-slate-950 font-black">
|
||||
G
|
||||
</div>
|
||||
<span className="text-slate-300 font-bold text-sm">GISE SRL</span>
|
||||
<span>— Infogérance Souveraine & Cyber-Résilience</span>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center gap-6">
|
||||
<span>Bruxelles • Wallonie • Flandre</span>
|
||||
<span>Hébergé 100% en Belgique</span>
|
||||
<span>© {new Date().getFullYear()} GISE. Tous droits réservés.</span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default GiseLandingPage;
|
||||
Reference in New Issue
Block a user