Some checks failed
Overhaul landing page design with updated CSS, Tailwind config, and i18n translations across all supported languages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
943 lines
26 KiB
HTML
943 lines
26 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CERTifAI - Template 2: Cyber Command</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
/* ========================================================================
|
|
TEMPLATE 2: CYBER COMMAND
|
|
========================================================================
|
|
Mood: Dark, high-tech, cyberpunk-inspired command center
|
|
Audience: DevOps, security teams, tech-forward startups
|
|
Palette: Deep blacks, neon cyan/green accents, electric highlights
|
|
Fonts: Outfit (headings) + JetBrains Mono (body/data)
|
|
Feel: Powerful, technical, mission-critical, the Matrix meets Bloomberg Terminal
|
|
======================================================================== */
|
|
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg-void: #050508;
|
|
--bg-primary: #0a0b10;
|
|
--bg-secondary: #0f1018;
|
|
--bg-card: #12141e;
|
|
--bg-surface: #181b28;
|
|
--bg-hover: #1a1d2c;
|
|
--text-primary: #d4dae8;
|
|
--text-secondary: #7a8499;
|
|
--text-muted: #484f64;
|
|
--text-bright: #f0f3fa;
|
|
--cyan: #00e5c8;
|
|
--cyan-dim: rgba(0, 229, 200, 0.12);
|
|
--cyan-border: rgba(0, 229, 200, 0.2);
|
|
--cyan-glow: rgba(0, 229, 200, 0.06);
|
|
--green: #34d399;
|
|
--red: #f87171;
|
|
--yellow: #fbbf24;
|
|
--border: #1a1d2c;
|
|
--border-bright: #252a3a;
|
|
--shadow-glow: 0 0 40px rgba(0, 229, 200, 0.05);
|
|
}
|
|
|
|
body {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
color: var(--text-primary);
|
|
background: var(--bg-void);
|
|
line-height: 1.65;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-weight: 700;
|
|
line-height: 1.15;
|
|
color: var(--text-bright);
|
|
}
|
|
|
|
/* ===== View Switcher ===== */
|
|
.view-switcher {
|
|
position: fixed;
|
|
top: 16px;
|
|
right: 16px;
|
|
z-index: 9999;
|
|
display: flex;
|
|
gap: 2px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-bright);
|
|
padding: 4px;
|
|
border-radius: 8px;
|
|
}
|
|
.view-switcher button {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.05em;
|
|
text-transform: uppercase;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
transition: all 0.2s;
|
|
}
|
|
.view-switcher button.active {
|
|
background: var(--cyan);
|
|
color: var(--bg-void);
|
|
}
|
|
.view-switcher button:hover:not(.active) { color: var(--text-primary); }
|
|
|
|
.view { display: none; }
|
|
.view.active { display: block; }
|
|
|
|
/* ===== LANDING PAGE ===== */
|
|
|
|
.landing-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 18px 48px;
|
|
background: rgba(10, 11, 16, 0.85);
|
|
backdrop-filter: blur(24px);
|
|
border-bottom: 1px solid var(--border);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
.nav-logo {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
color: var(--text-bright);
|
|
}
|
|
.nav-logo .accent { color: var(--cyan); }
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 32px;
|
|
list-style: none;
|
|
}
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: var(--text-secondary);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
transition: color 0.2s;
|
|
}
|
|
.nav-links a:hover { color: var(--cyan); }
|
|
.nav-cta { display: flex; gap: 10px; }
|
|
.btn-ghost {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 10px 20px;
|
|
border: 1px solid var(--border-bright);
|
|
background: transparent;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
border-radius: 6px;
|
|
transition: all 0.2s;
|
|
}
|
|
.btn-ghost:hover { border-color: var(--cyan-border); color: var(--cyan); }
|
|
.btn-primary {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
padding: 10px 24px;
|
|
border: 1px solid var(--cyan);
|
|
background: var(--cyan);
|
|
color: var(--bg-void);
|
|
cursor: pointer;
|
|
border-radius: 6px;
|
|
transition: all 0.25s;
|
|
}
|
|
.btn-primary:hover { box-shadow: 0 0 24px rgba(0,229,200,0.3); transform: translateY(-1px); }
|
|
|
|
/* -- Hero -- */
|
|
.hero {
|
|
padding: 140px 48px 120px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -100px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 600px;
|
|
height: 600px;
|
|
background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
.hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: repeating-linear-gradient(
|
|
0deg,
|
|
transparent,
|
|
transparent 2px,
|
|
rgba(0, 229, 200, 0.01) 2px,
|
|
rgba(0, 229, 200, 0.01) 4px
|
|
);
|
|
pointer-events: none;
|
|
}
|
|
.hero-tag {
|
|
display: inline-block;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--cyan);
|
|
padding: 8px 20px;
|
|
border: 1px solid var(--cyan-border);
|
|
border-radius: 4px;
|
|
margin-bottom: 36px;
|
|
background: var(--cyan-dim);
|
|
animation: fadeIn 0.5s ease;
|
|
}
|
|
.hero h1 {
|
|
font-size: 72px;
|
|
letter-spacing: -2px;
|
|
margin-bottom: 24px;
|
|
animation: fadeUp 0.6s ease 0.1s both;
|
|
}
|
|
.hero h1 .gradient {
|
|
background: linear-gradient(135deg, var(--cyan), #34d399, var(--cyan));
|
|
background-size: 200% 200%;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
animation: shimmer 4s ease infinite;
|
|
}
|
|
.hero p {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
max-width: 520px;
|
|
margin: 0 auto 44px;
|
|
line-height: 1.8;
|
|
animation: fadeUp 0.6s ease 0.2s both;
|
|
}
|
|
.hero-actions {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
animation: fadeUp 0.6s ease 0.3s both;
|
|
}
|
|
.btn-outline {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 12px 28px;
|
|
border: 1px solid var(--border-bright);
|
|
background: transparent;
|
|
color: var(--text-primary);
|
|
cursor: pointer;
|
|
border-radius: 6px;
|
|
transition: all 0.25s;
|
|
}
|
|
.btn-outline:hover { border-color: var(--cyan-border); color: var(--cyan); }
|
|
|
|
/* -- Terminal Preview -- */
|
|
.terminal-preview {
|
|
max-width: 700px;
|
|
margin: 60px auto 0;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border-bright);
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
animation: fadeUp 0.6s ease 0.4s both;
|
|
}
|
|
.terminal-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 16px;
|
|
background: var(--bg-surface);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.terminal-dot {
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
}
|
|
.terminal-dot.r { background: var(--red); opacity: 0.7; }
|
|
.terminal-dot.y { background: var(--yellow); opacity: 0.7; }
|
|
.terminal-dot.g { background: var(--green); opacity: 0.7; }
|
|
.terminal-title {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
margin-left: 8px;
|
|
}
|
|
.terminal-body {
|
|
padding: 20px;
|
|
font-size: 13px;
|
|
line-height: 1.9;
|
|
color: var(--text-secondary);
|
|
}
|
|
.terminal-body .cmd { color: var(--cyan); }
|
|
.terminal-body .comment { color: var(--text-muted); }
|
|
.terminal-body .success { color: var(--green); }
|
|
|
|
/* -- Trust Bar -- */
|
|
.trust-bar {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 48px;
|
|
padding: 40px 48px;
|
|
border-top: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.trust-item {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.trust-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
background: var(--cyan);
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 8px rgba(0,229,200,0.4);
|
|
}
|
|
|
|
/* -- Features -- */
|
|
.features {
|
|
padding: 100px 48px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 64px;
|
|
}
|
|
.section-header h2 {
|
|
font-size: 42px;
|
|
letter-spacing: -1px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.section-header p {
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
}
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
}
|
|
.feature-card {
|
|
padding: 28px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.feature-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, transparent, var(--cyan), transparent);
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
.feature-card:hover::before { opacity: 1; }
|
|
.feature-card:hover { border-color: var(--border-bright); box-shadow: var(--shadow-glow); }
|
|
.feature-num {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: var(--cyan);
|
|
letter-spacing: 0.1em;
|
|
margin-bottom: 16px;
|
|
opacity: 0.6;
|
|
}
|
|
.feature-card h3 {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 10px;
|
|
}
|
|
.feature-card p {
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* -- CTA -- */
|
|
.cta-section {
|
|
padding: 80px 48px;
|
|
text-align: center;
|
|
}
|
|
.cta-box {
|
|
max-width: 720px;
|
|
margin: 0 auto;
|
|
padding: 56px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--cyan-border);
|
|
border-radius: 12px;
|
|
box-shadow: var(--shadow-glow);
|
|
}
|
|
.cta-box h2 { font-size: 32px; margin-bottom: 12px; }
|
|
.cta-box p { font-size: 13px; color: var(--text-secondary); margin-bottom: 32px; }
|
|
|
|
/* -- Footer -- */
|
|
.landing-footer {
|
|
padding: 40px 48px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 1px solid var(--border);
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
}
|
|
.footer-links { display: flex; gap: 24px; }
|
|
.footer-links a { color: var(--text-muted); text-decoration: none; }
|
|
.footer-links a:hover { color: var(--cyan); }
|
|
|
|
/* ===== DASHBOARD ===== */
|
|
|
|
.dashboard-layout {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
background: var(--bg-primary);
|
|
}
|
|
|
|
.sidebar {
|
|
width: 240px;
|
|
min-width: 240px;
|
|
background: var(--bg-secondary);
|
|
border-right: 1px solid var(--border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
.sidebar-brand {
|
|
padding: 20px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.sidebar-brand h2 {
|
|
font-size: 16px;
|
|
font-weight: 800;
|
|
letter-spacing: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
.sidebar-brand .accent { color: var(--cyan); }
|
|
.sidebar-status {
|
|
padding: 12px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
}
|
|
.pulse-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--green);
|
|
box-shadow: 0 0 8px rgba(52,211,153,0.5);
|
|
animation: pulse 2s ease infinite;
|
|
}
|
|
.sidebar-nav {
|
|
flex: 1;
|
|
padding: 12px 8px;
|
|
}
|
|
.nav-group-label {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
padding: 12px 12px 6px;
|
|
}
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
text-decoration: none;
|
|
border-left: 2px solid transparent;
|
|
}
|
|
.nav-item:hover { background: var(--bg-hover); color: var(--text-primary); }
|
|
.nav-item.active {
|
|
background: var(--cyan-dim);
|
|
color: var(--cyan);
|
|
border-left-color: var(--cyan);
|
|
}
|
|
.sidebar-user {
|
|
padding: 16px;
|
|
border-top: 1px solid var(--border);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.user-avatar-sm {
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 4px;
|
|
background: var(--cyan-dim);
|
|
color: var(--cyan);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 10px;
|
|
font-weight: 700;
|
|
}
|
|
.user-info-sm .name { font-size: 12px; font-weight: 600; color: var(--text-primary); }
|
|
.user-info-sm .role { font-size: 10px; color: var(--text-muted); }
|
|
|
|
/* -- Main -- */
|
|
.main-content {
|
|
flex: 1;
|
|
padding: 32px 40px;
|
|
min-width: 0;
|
|
}
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 32px;
|
|
}
|
|
.page-title { font-size: 24px; letter-spacing: -0.5px; }
|
|
.page-subtitle {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
margin-top: 4px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
|
|
/* -- Stats -- */
|
|
.stats-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 12px;
|
|
margin-bottom: 28px;
|
|
}
|
|
.stat-card {
|
|
padding: 20px;
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.stat-card::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: linear-gradient(90deg, var(--cyan), transparent);
|
|
opacity: 0.3;
|
|
}
|
|
.stat-label {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
margin-bottom: 8px;
|
|
}
|
|
.stat-value {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 26px;
|
|
font-weight: 700;
|
|
color: var(--text-bright);
|
|
}
|
|
.stat-change {
|
|
font-size: 11px;
|
|
margin-top: 6px;
|
|
color: var(--green);
|
|
}
|
|
|
|
/* -- Grid -- */
|
|
.content-grid {
|
|
display: grid;
|
|
grid-template-columns: 5fr 3fr;
|
|
gap: 16px;
|
|
}
|
|
.card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 8px;
|
|
padding: 24px;
|
|
}
|
|
.card-title {
|
|
font-family: 'Outfit', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--text-bright);
|
|
margin-bottom: 18px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.card-badge {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
padding: 4px 10px;
|
|
background: var(--cyan-dim);
|
|
color: var(--cyan);
|
|
border-radius: 4px;
|
|
border: 1px solid var(--cyan-border);
|
|
}
|
|
|
|
/* -- Table -- */
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
.data-table th {
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
text-align: left;
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.data-table td {
|
|
font-size: 12px;
|
|
padding: 12px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
color: var(--text-primary);
|
|
}
|
|
.data-table tr:last-child td { border-bottom: none; }
|
|
.model-tag {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
padding: 2px 8px;
|
|
background: var(--bg-surface);
|
|
border: 1px solid var(--border-bright);
|
|
border-radius: 4px;
|
|
color: var(--text-primary);
|
|
}
|
|
.status-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
}
|
|
.status-dot.on { background: var(--green); box-shadow: 0 0 6px rgba(52,211,153,0.5); }
|
|
.status-dot.off { background: var(--text-muted); }
|
|
|
|
/* -- Activity List -- */
|
|
.activity-item {
|
|
display: flex;
|
|
gap: 12px;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
align-items: flex-start;
|
|
}
|
|
.activity-item:last-child { border-bottom: none; }
|
|
.activity-time {
|
|
font-size: 10px;
|
|
color: var(--text-muted);
|
|
white-space: nowrap;
|
|
padding-top: 2px;
|
|
min-width: 48px;
|
|
}
|
|
.activity-text {
|
|
font-size: 12px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.5;
|
|
}
|
|
.activity-text strong { color: var(--text-primary); font-weight: 600; }
|
|
.activity-text .hl { color: var(--cyan); }
|
|
|
|
/* ===== Animations ===== */
|
|
@keyframes fadeUp {
|
|
from { opacity: 0; transform: translateY(20px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
@keyframes fadeIn {
|
|
from { opacity: 0; }
|
|
to { opacity: 1; }
|
|
}
|
|
@keyframes shimmer {
|
|
0%, 100% { background-position: 0% 50%; }
|
|
50% { background-position: 100% 50%; }
|
|
}
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.4; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="view-switcher">
|
|
<button class="active" onclick="showView('landing')">LANDING</button>
|
|
<button onclick="showView('dashboard')">DASHBOARD</button>
|
|
</div>
|
|
|
|
<!-- ===== LANDING ===== -->
|
|
<div id="landing" class="view active">
|
|
<nav class="landing-nav">
|
|
<div class="nav-logo">CERT<span class="accent">IF</span>AI</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#">Features</a></li>
|
|
<li><a href="#">Architecture</a></li>
|
|
<li><a href="#">Pricing</a></li>
|
|
<li><a href="#">Docs</a></li>
|
|
</ul>
|
|
<div class="nav-cta">
|
|
<button class="btn-ghost">Sign In</button>
|
|
<button class="btn-primary">Deploy Now</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="hero-tag">// SELF-HOSTED · GDPR NATIVE · ZERO TRUST</div>
|
|
<h1>Private AI<br><span class="gradient">Command Center</span></h1>
|
|
<p>Deploy sovereign AI infrastructure that never phones home. Route LLMs, orchestrate agents, track every token—all inside your perimeter.</p>
|
|
<div class="hero-actions">
|
|
<button class="btn-primary" style="padding:14px 32px">Deploy Now</button>
|
|
<button class="btn-outline" style="padding:14px 32px">Read the Docs</button>
|
|
</div>
|
|
|
|
<div class="terminal-preview">
|
|
<div class="terminal-bar">
|
|
<div class="terminal-dot r"></div>
|
|
<div class="terminal-dot y"></div>
|
|
<div class="terminal-dot g"></div>
|
|
<span class="terminal-title">certifai-cli — deploy</span>
|
|
</div>
|
|
<div class="terminal-body">
|
|
<span class="comment"># Deploy CERTifAI to your private cluster</span><br>
|
|
<span class="cmd">$</span> certifai deploy --region eu-west-1 --gpu a100<br>
|
|
<span class="success">✓</span> Keycloak SSO configured<br>
|
|
<span class="success">✓</span> LiteLLM proxy ready (5 models loaded)<br>
|
|
<span class="success">✓</span> LangGraph agents online<br>
|
|
<span class="success">✓</span> Langfuse observability active<br>
|
|
<br>
|
|
<span class="cmd">$</span> certifai status<br>
|
|
<span class="success">All systems operational.</span> Uptime: 99.97%
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="trust-bar">
|
|
<div class="trust-item"><div class="trust-dot"></div>100% ON-PREMISE</div>
|
|
<div class="trust-item"><div class="trust-dot"></div>GDPR ARTICLE 28</div>
|
|
<div class="trust-item"><div class="trust-dot"></div>EU DATA RESIDENCY</div>
|
|
<div class="trust-item"><div class="trust-dot"></div>ZERO THIRD-PARTY</div>
|
|
<div class="trust-item"><div class="trust-dot"></div>SOC 2 TYPE II</div>
|
|
</div>
|
|
|
|
<section class="features">
|
|
<div class="section-header">
|
|
<h2>Full-spectrum control</h2>
|
|
<p>From model routing to cost analytics, every layer is yours to command.</p>
|
|
</div>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-num">01</div>
|
|
<h3>LLM Gateway</h3>
|
|
<p>LiteLLM proxy routes requests across providers. One API, full model flexibility, zero vendor lock-in.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-num">02</div>
|
|
<h3>Agent Orchestration</h3>
|
|
<p>LangGraph + LangFlow for building, deploying, and monitoring autonomous agent workflows.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-num">03</div>
|
|
<h3>Full Observability</h3>
|
|
<p>Langfuse tracing, cost attribution, prompt versioning. Know exactly what your AI is doing.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-num">04</div>
|
|
<h3>Identity & Access</h3>
|
|
<p>Keycloak SSO with SAML, OIDC, LDAP. Fine-grained RBAC across all services.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-num">05</div>
|
|
<h3>MCP Servers</h3>
|
|
<p>Model Context Protocol support for tool-augmented AI with secure function calling.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-num">06</div>
|
|
<h3>API-First</h3>
|
|
<p>REST endpoints, API key rotation, webhook events. Integrate CERTifAI into your existing stack.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta-section">
|
|
<div class="cta-box">
|
|
<h2>Your cluster. Your models. Your rules.</h2>
|
|
<p>Spin up a fully operational AI stack in under 30 minutes.</p>
|
|
<button class="btn-primary" style="padding:14px 36px; font-size:13px;">Start Deployment</button>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="landing-footer">
|
|
<span>© 2026 CERTifAI GmbH</span>
|
|
<div class="footer-links">
|
|
<a href="#">Privacy</a>
|
|
<a href="#">Impressum</a>
|
|
<a href="#">Status</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<!-- ===== DASHBOARD ===== -->
|
|
<div id="dashboard" class="view">
|
|
<div class="dashboard-layout">
|
|
<aside class="sidebar">
|
|
<div class="sidebar-brand">
|
|
<h2>CERT<span class="accent">IF</span>AI</h2>
|
|
</div>
|
|
<div class="sidebar-status">
|
|
<div class="pulse-dot"></div>
|
|
ALL SYSTEMS OPERATIONAL
|
|
</div>
|
|
<nav class="sidebar-nav">
|
|
<div class="nav-group-label">Core</div>
|
|
<a class="nav-item active" href="#">>_ Dashboard</a>
|
|
<a class="nav-item" href="#">◊ Providers</a>
|
|
<a class="nav-item" href="#">✉ Chat</a>
|
|
<div class="nav-group-label">Developer</div>
|
|
<a class="nav-item" href="#">❖ Agents</a>
|
|
<a class="nav-item" href="#">⧉ Workflows</a>
|
|
<a class="nav-item" href="#">☰ Analytics</a>
|
|
<div class="nav-group-label">Organization</div>
|
|
<a class="nav-item" href="#">★ Billing</a>
|
|
<a class="nav-item" href="#">♟ Members</a>
|
|
</nav>
|
|
<div class="sidebar-user">
|
|
<div class="user-avatar-sm">MM</div>
|
|
<div class="user-info-sm">
|
|
<div class="name">Max Mustermann</div>
|
|
<div class="role">Admin</div>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
|
|
<main class="main-content">
|
|
<div class="page-header">
|
|
<div>
|
|
<h1 class="page-title">Command Center</h1>
|
|
<p class="page-subtitle">// system overview · feb 2026</p>
|
|
</div>
|
|
<button class="btn-primary">+ New Search</button>
|
|
</div>
|
|
|
|
<div class="stats-row">
|
|
<div class="stat-card">
|
|
<div class="stat-label">Total Spend</div>
|
|
<div class="stat-value">$47.82</div>
|
|
<div class="stat-change">+12.4% vs last month</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Tokens Processed</div>
|
|
<div class="stat-value">847K</div>
|
|
<div class="stat-change">of 1M monthly cap</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Active Models</div>
|
|
<div class="stat-value">5</div>
|
|
<div class="stat-change"><span class="status-dot on"></span>LiteLLM proxy online</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Team Seats</div>
|
|
<div class="stat-value">4/25</div>
|
|
<div class="stat-change">21 available</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content-grid">
|
|
<div class="card">
|
|
<div class="card-title">
|
|
Model Usage
|
|
<span class="card-badge">LIVE</span>
|
|
</div>
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr><th>Model</th><th>Tokens</th><th>Spend</th><th>Status</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td><span class="model-tag">Qwen3-Coder-30B</span></td><td>342K</td><td>$18.40</td><td><span class="status-dot on"></span>Active</td></tr>
|
|
<tr><td><span class="model-tag">Llama-3.1-70B</span></td><td>285K</td><td>$15.20</td><td><span class="status-dot on"></span>Active</td></tr>
|
|
<tr><td><span class="model-tag">Mistral-7B</span></td><td>120K</td><td>$8.42</td><td><span class="status-dot on"></span>Active</td></tr>
|
|
<tr><td><span class="model-tag">Gemma-2-9B</span></td><td>65K</td><td>$3.80</td><td><span class="status-dot on"></span>Active</td></tr>
|
|
<tr><td><span class="model-tag">Phi-3-mini</span></td><td>35K</td><td>$2.00</td><td><span class="status-dot off"></span>Idle</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-title">Activity Log</div>
|
|
<div class="activity-item">
|
|
<span class="activity-time">2m ago</span>
|
|
<span class="activity-text"><strong>Erika M.</strong> queried <span class="hl">Qwen3-Coder</span></span>
|
|
</div>
|
|
<div class="activity-item">
|
|
<span class="activity-time">8m ago</span>
|
|
<span class="activity-text"><strong>Johann S.</strong> deployed agent <span class="hl">doc-parser</span></span>
|
|
</div>
|
|
<div class="activity-item">
|
|
<span class="activity-time">14m ago</span>
|
|
<span class="activity-text"><strong>Anna W.</strong> viewed analytics trace</span>
|
|
</div>
|
|
<div class="activity-item">
|
|
<span class="activity-time">31m ago</span>
|
|
<span class="activity-text"><strong>Max M.</strong> rotated API key for <span class="hl">LiteLLM</span></span>
|
|
</div>
|
|
<div class="activity-item">
|
|
<span class="activity-time">1h ago</span>
|
|
<span class="activity-text">System: <span class="hl">Llama-3.1-70B</span> model health check passed</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function showView(id) {
|
|
document.querySelectorAll('.view').forEach(v => v.classList.remove('active'));
|
|
document.querySelectorAll('.view-switcher button').forEach(b => b.classList.remove('active'));
|
|
document.getElementById(id).classList.add('active');
|
|
event.target.classList.add('active');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|