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>
964 lines
26 KiB
HTML
964 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 4: Glass Aurora</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Literata:ital,opsz,wght@0,7..72,400;0,7..72,500;0,7..72,600;0,7..72,700;1,7..72,400&display=swap" rel="stylesheet">
|
|
<style>
|
|
/* ========================================================================
|
|
TEMPLATE 4: GLASS AURORA
|
|
========================================================================
|
|
Mood: Vibrant, modern, glassmorphic, bold gradients
|
|
Audience: SaaS-savvy buyers, modern enterprises, AI-native teams
|
|
Palette: Deep navy/purple base, aurora gradient accents, glass effects
|
|
Fonts: Sora (headings) + Literata (body)
|
|
Feel: Premium SaaS, forward-looking, rich, confident
|
|
======================================================================== */
|
|
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg-deep: #0c0a1d;
|
|
--bg-primary: #100e24;
|
|
--bg-card: rgba(22, 19, 48, 0.7);
|
|
--bg-glass: rgba(255, 255, 255, 0.04);
|
|
--bg-glass-hover: rgba(255, 255, 255, 0.07);
|
|
--text-bright: #f4f0ff;
|
|
--text-primary: #cfc8e8;
|
|
--text-secondary: #8b82aa;
|
|
--text-muted: #5a5280;
|
|
--gradient-start: #6366f1;
|
|
--gradient-mid: #a855f7;
|
|
--gradient-end: #ec4899;
|
|
--aurora: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7, #ec4899);
|
|
--aurora-muted: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(168,85,247,0.12));
|
|
--glass-border: rgba(255, 255, 255, 0.08);
|
|
--glass-border-bright: rgba(255, 255, 255, 0.12);
|
|
--green: #34d399;
|
|
--green-dim: rgba(52, 211, 153, 0.15);
|
|
--shadow-glow: 0 0 60px rgba(139, 92, 246, 0.08);
|
|
--radius: 16px;
|
|
--radius-sm: 10px;
|
|
--radius-xl: 24px;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Literata', serif;
|
|
color: var(--text-primary);
|
|
background: var(--bg-deep);
|
|
line-height: 1.7;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Sora', 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);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
padding: 4px;
|
|
border-radius: 12px;
|
|
}
|
|
.view-switcher button {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
border: none;
|
|
padding: 8px 18px;
|
|
border-radius: 9px;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
color: var(--text-muted);
|
|
transition: all 0.25s;
|
|
}
|
|
.view-switcher button.active {
|
|
background: var(--aurora);
|
|
color: #fff;
|
|
}
|
|
.view-switcher button:hover:not(.active) { color: var(--text-primary); }
|
|
|
|
.view { display: none; }
|
|
.view.active { display: block; }
|
|
|
|
/* ===== LANDING ===== */
|
|
|
|
.landing-bg {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.landing-bg::before {
|
|
content: '';
|
|
position: fixed;
|
|
top: -40%;
|
|
left: -20%;
|
|
width: 80%;
|
|
height: 80%;
|
|
background: radial-gradient(ellipse, rgba(99,102,241,0.12) 0%, transparent 60%);
|
|
pointer-events: none;
|
|
}
|
|
.landing-bg::after {
|
|
content: '';
|
|
position: fixed;
|
|
bottom: -30%;
|
|
right: -20%;
|
|
width: 70%;
|
|
height: 70%;
|
|
background: radial-gradient(ellipse, rgba(236,72,153,0.08) 0%, transparent 60%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.landing-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 18px 56px;
|
|
background: rgba(16, 14, 36, 0.6);
|
|
backdrop-filter: blur(24px);
|
|
border-bottom: 1px solid var(--glass-border);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
.nav-logo {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 22px;
|
|
font-weight: 800;
|
|
background: var(--aurora);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 32px;
|
|
list-style: none;
|
|
}
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: var(--text-secondary);
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
transition: color 0.2s;
|
|
}
|
|
.nav-links a:hover { color: var(--text-bright); }
|
|
.nav-cta { display: flex; gap: 10px; }
|
|
.btn-ghost {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
padding: 10px 22px;
|
|
border: 1px solid var(--glass-border);
|
|
background: transparent;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
border-radius: var(--radius-sm);
|
|
transition: all 0.2s;
|
|
}
|
|
.btn-ghost:hover { border-color: var(--glass-border-bright); color: var(--text-bright); }
|
|
.btn-primary {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
padding: 10px 24px;
|
|
border: none;
|
|
background: var(--aurora);
|
|
background-size: 200% 200%;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
border-radius: var(--radius-sm);
|
|
transition: all 0.3s;
|
|
}
|
|
.btn-primary:hover { background-position: 100% 0; transform: translateY(-1px); box-shadow: 0 4px 24px rgba(139,92,246,0.3); }
|
|
|
|
/* -- Hero -- */
|
|
.hero {
|
|
padding: 120px 56px 100px;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
.hero-pills {
|
|
display: flex;
|
|
gap: 8px;
|
|
justify-content: center;
|
|
margin-bottom: 32px;
|
|
animation: fadeUp 0.6s ease;
|
|
}
|
|
.pill {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 6px 16px;
|
|
background: var(--bg-glass);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 100px;
|
|
color: var(--text-secondary);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
.pill.accent {
|
|
background: rgba(99,102,241,0.15);
|
|
border-color: rgba(99,102,241,0.3);
|
|
color: #a5b4fc;
|
|
}
|
|
.hero h1 {
|
|
font-size: 68px;
|
|
letter-spacing: -2px;
|
|
margin-bottom: 20px;
|
|
animation: fadeUp 0.6s ease 0.1s both;
|
|
}
|
|
.hero h1 .gradient-text {
|
|
background: var(--aurora);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.hero p {
|
|
font-size: 17px;
|
|
color: var(--text-secondary);
|
|
max-width: 540px;
|
|
margin: 0 auto 40px;
|
|
animation: fadeUp 0.6s ease 0.2s both;
|
|
}
|
|
.hero-actions {
|
|
display: flex;
|
|
gap: 14px;
|
|
justify-content: center;
|
|
animation: fadeUp 0.6s ease 0.3s both;
|
|
}
|
|
.btn-lg { padding: 14px 36px; font-size: 14px; }
|
|
.btn-glass {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 14px 36px;
|
|
background: var(--bg-glass);
|
|
backdrop-filter: blur(8px);
|
|
border: 1px solid var(--glass-border);
|
|
color: var(--text-primary);
|
|
cursor: pointer;
|
|
border-radius: var(--radius-sm);
|
|
transition: all 0.25s;
|
|
}
|
|
.btn-glass:hover { background: var(--bg-glass-hover); border-color: var(--glass-border-bright); }
|
|
|
|
/* -- Glass Preview -- */
|
|
.preview-container {
|
|
max-width: 900px;
|
|
margin: 64px auto 0;
|
|
animation: fadeUp 0.8s ease 0.4s both;
|
|
}
|
|
.glass-preview {
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius-xl);
|
|
padding: 32px;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
}
|
|
.preview-stat {
|
|
padding: 20px;
|
|
background: var(--bg-glass);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius);
|
|
text-align: center;
|
|
}
|
|
.preview-stat-value {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: var(--text-bright);
|
|
margin-bottom: 4px;
|
|
}
|
|
.preview-stat-label {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* -- Trust -- */
|
|
.trust-bar {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
padding: 48px 56px;
|
|
border-top: 1px solid var(--glass-border);
|
|
}
|
|
.trust-item {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
.trust-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--aurora);
|
|
}
|
|
|
|
/* -- Features -- */
|
|
.features {
|
|
padding: 100px 56px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
}
|
|
.section-header h2 { font-size: 40px; letter-spacing: -1px; margin-bottom: 12px; }
|
|
.section-header p { font-size: 16px; color: var(--text-secondary); max-width: 450px; margin: 0 auto; }
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 16px;
|
|
}
|
|
.feature-card {
|
|
padding: 28px;
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(12px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius);
|
|
transition: all 0.3s;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.feature-card:hover {
|
|
border-color: var(--glass-border-bright);
|
|
box-shadow: var(--shadow-glow);
|
|
transform: translateY(-2px);
|
|
}
|
|
.feature-icon-bar {
|
|
width: 40px;
|
|
height: 4px;
|
|
border-radius: 2px;
|
|
background: var(--aurora);
|
|
margin-bottom: 18px;
|
|
}
|
|
.feature-card h3 {
|
|
font-size: 16px;
|
|
margin-bottom: 8px;
|
|
}
|
|
.feature-card p {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* -- CTA -- */
|
|
.cta-section {
|
|
padding: 80px 56px;
|
|
text-align: center;
|
|
}
|
|
.cta-box {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
padding: 60px;
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(20px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius-xl);
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.cta-box::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 2px;
|
|
background: var(--aurora);
|
|
}
|
|
.cta-box h2 { font-size: 32px; margin-bottom: 12px; }
|
|
.cta-box p { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; }
|
|
|
|
.landing-footer {
|
|
padding: 40px 56px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 1px solid var(--glass-border);
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 12px;
|
|
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(--text-bright); }
|
|
|
|
/* ===== DASHBOARD ===== */
|
|
|
|
.dashboard-layout {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
background: var(--bg-deep);
|
|
}
|
|
|
|
.sidebar {
|
|
width: 256px;
|
|
min-width: 256px;
|
|
background: rgba(16, 14, 36, 0.8);
|
|
backdrop-filter: blur(20px);
|
|
border-right: 1px solid var(--glass-border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
.sidebar-brand {
|
|
padding: 22px 20px;
|
|
border-bottom: 1px solid var(--glass-border);
|
|
}
|
|
.sidebar-brand h2 {
|
|
font-size: 20px;
|
|
font-weight: 800;
|
|
background: var(--aurora);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.sidebar-user {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 18px 20px;
|
|
border-bottom: 1px solid var(--glass-border);
|
|
}
|
|
.user-avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 10px;
|
|
background: var(--aurora);
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
}
|
|
.user-name { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; color: var(--text-bright); }
|
|
.user-email { font-family: 'Sora', sans-serif; font-size: 11px; color: var(--text-muted); }
|
|
.sidebar-nav {
|
|
flex: 1;
|
|
padding: 12px 10px;
|
|
}
|
|
.nav-group {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--text-muted);
|
|
padding: 14px 14px 6px;
|
|
}
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 9px 14px;
|
|
border-radius: var(--radius-sm);
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
text-decoration: none;
|
|
}
|
|
.nav-item:hover { background: var(--bg-glass-hover); color: var(--text-primary); }
|
|
.nav-item.active {
|
|
background: rgba(99,102,241,0.12);
|
|
color: #a5b4fc;
|
|
font-weight: 600;
|
|
}
|
|
.sidebar-footer {
|
|
padding: 14px 20px;
|
|
border-top: 1px solid var(--glass-border);
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.main-content {
|
|
flex: 1;
|
|
padding: 36px 44px;
|
|
min-width: 0;
|
|
}
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 32px;
|
|
}
|
|
.page-title { font-size: 26px; letter-spacing: -0.5px; }
|
|
.page-subtitle { font-family: 'Sora', sans-serif; font-size: 13px; color: var(--text-muted); margin-top: 4px; }
|
|
|
|
/* -- Gradient Banner -- */
|
|
.gradient-banner {
|
|
background: var(--aurora);
|
|
border-radius: var(--radius-xl);
|
|
padding: 32px 36px;
|
|
margin-bottom: 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.gradient-banner::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: repeating-linear-gradient(
|
|
90deg,
|
|
transparent,
|
|
transparent 100px,
|
|
rgba(255,255,255,0.03) 100px,
|
|
rgba(255,255,255,0.03) 101px
|
|
);
|
|
}
|
|
.banner-text h3 { font-size: 20px; margin-bottom: 4px; position: relative; }
|
|
.banner-text p { font-size: 13px; color: rgba(255,255,255,0.7); position: relative; font-family: 'Sora', sans-serif; }
|
|
.banner-stats {
|
|
display: flex;
|
|
gap: 36px;
|
|
position: relative;
|
|
}
|
|
.banner-stat-value { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: #fff; }
|
|
.banner-stat-label { font-family: 'Sora', sans-serif; font-size: 11px; color: rgba(255,255,255,0.6); }
|
|
|
|
/* -- Stats -- */
|
|
.stats-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 14px;
|
|
margin-bottom: 24px;
|
|
}
|
|
.stat-card {
|
|
padding: 22px;
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(12px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius);
|
|
transition: all 0.2s;
|
|
}
|
|
.stat-card:hover { border-color: var(--glass-border-bright); box-shadow: var(--shadow-glow); }
|
|
.stat-label {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
margin-bottom: 8px;
|
|
}
|
|
.stat-value {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 26px;
|
|
font-weight: 700;
|
|
color: var(--text-bright);
|
|
}
|
|
.stat-sub {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 11px;
|
|
margin-top: 4px;
|
|
color: var(--green);
|
|
}
|
|
|
|
/* -- Grid -- */
|
|
.content-grid {
|
|
display: grid;
|
|
grid-template-columns: 3fr 2fr;
|
|
gap: 14px;
|
|
}
|
|
.card {
|
|
background: var(--bg-card);
|
|
backdrop-filter: blur(12px);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: var(--radius);
|
|
padding: 24px;
|
|
}
|
|
.card-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 18px;
|
|
}
|
|
.card-title {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--text-bright);
|
|
}
|
|
.card-badge {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
padding: 4px 12px;
|
|
background: var(--green-dim);
|
|
color: var(--green);
|
|
border-radius: 100px;
|
|
}
|
|
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
.data-table th {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 10px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: var(--text-muted);
|
|
text-align: left;
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid var(--glass-border);
|
|
}
|
|
.data-table td {
|
|
font-size: 13px;
|
|
padding: 12px 0;
|
|
border-bottom: 1px solid var(--glass-border);
|
|
}
|
|
.data-table tr:last-child td { border-bottom: none; }
|
|
.model-tag {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
padding: 3px 10px;
|
|
background: var(--bg-glass);
|
|
border: 1px solid var(--glass-border);
|
|
border-radius: 6px;
|
|
}
|
|
.status-online {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 6px;
|
|
background: var(--green);
|
|
box-shadow: 0 0 6px rgba(52,211,153,0.5);
|
|
}
|
|
|
|
/* -- Service Status -- */
|
|
.service-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 14px 0;
|
|
border-bottom: 1px solid var(--glass-border);
|
|
}
|
|
.service-item:last-child { border-bottom: none; }
|
|
.service-name {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-primary);
|
|
}
|
|
.service-url {
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
}
|
|
.service-status {
|
|
font-family: 'Sora', sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
padding: 4px 12px;
|
|
border-radius: 100px;
|
|
}
|
|
.service-status.online {
|
|
background: var(--green-dim);
|
|
color: var(--green);
|
|
}
|
|
.service-status.offline {
|
|
background: rgba(248,113,113,0.12);
|
|
color: #f87171;
|
|
}
|
|
|
|
@keyframes fadeUp {
|
|
from { opacity: 0; transform: translateY(20px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
</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 landing-bg">
|
|
<nav class="landing-nav">
|
|
<div class="nav-logo">CERTifAI</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#">Features</a></li>
|
|
<li><a href="#">Pricing</a></li>
|
|
<li><a href="#">Docs</a></li>
|
|
<li><a href="#">Blog</a></li>
|
|
</ul>
|
|
<div class="nav-cta">
|
|
<button class="btn-ghost">Sign In</button>
|
|
<button class="btn-primary">Get Started Free</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="hero-pills">
|
|
<span class="pill accent">GDPR Native</span>
|
|
<span class="pill">Self-Hosted</span>
|
|
<span class="pill">EU Sovereign</span>
|
|
</div>
|
|
<h1>Sovereign AI<br><span class="gradient-text">infrastructure</span></h1>
|
|
<p>The complete platform for deploying, managing, and scaling private generative AI. Your data never leaves your perimeter.</p>
|
|
<div class="hero-actions">
|
|
<button class="btn-primary btn-lg">Start Free Trial</button>
|
|
<button class="btn-glass">Live Demo</button>
|
|
</div>
|
|
|
|
<div class="preview-container">
|
|
<div class="glass-preview">
|
|
<div class="preview-stat">
|
|
<div class="preview-stat-value">5</div>
|
|
<div class="preview-stat-label">Active Models</div>
|
|
</div>
|
|
<div class="preview-stat">
|
|
<div class="preview-stat-value">847K</div>
|
|
<div class="preview-stat-label">Tokens / Month</div>
|
|
</div>
|
|
<div class="preview-stat">
|
|
<div class="preview-stat-value">$47.82</div>
|
|
<div class="preview-stat-label">Total Spend</div>
|
|
</div>
|
|
</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 Compliant</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>
|
|
|
|
<section class="features">
|
|
<div class="section-header">
|
|
<h2>Your AI, your way</h2>
|
|
<p>Every tool you need to run production AI without compromise.</p>
|
|
</div>
|
|
<div class="features-grid">
|
|
<div class="feature-card">
|
|
<div class="feature-icon-bar"></div>
|
|
<h3>LLM Gateway</h3>
|
|
<p>Route between any model through a unified API. LiteLLM proxy with full cost tracking.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon-bar"></div>
|
|
<h3>Agent Platform</h3>
|
|
<p>Build and deploy LangGraph agents with visual workflows and real-time monitoring.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon-bar"></div>
|
|
<h3>Observability</h3>
|
|
<p>Langfuse integration for traces, prompt engineering, and cost attribution.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon-bar"></div>
|
|
<h3>Identity & SSO</h3>
|
|
<p>Keycloak-powered auth with SAML, OIDC, and LDAP. One login across services.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon-bar"></div>
|
|
<h3>MCP Servers</h3>
|
|
<p>Model Context Protocol for secure, tool-augmented AI with function calling.</p>
|
|
</div>
|
|
<div class="feature-card">
|
|
<div class="feature-icon-bar"></div>
|
|
<h3>API-First</h3>
|
|
<p>REST endpoints, API keys, webhooks. Plug CERTifAI into your existing stack.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta-section">
|
|
<div class="cta-box">
|
|
<h2>Deploy in 30 minutes</h2>
|
|
<p>No credit card required. Full access to every feature.</p>
|
|
<button class="btn-primary btn-lg">Start Free Trial</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="#">Terms</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<!-- ===== DASHBOARD ===== -->
|
|
<div id="dashboard" class="view">
|
|
<div class="dashboard-layout">
|
|
<aside class="sidebar">
|
|
<div class="sidebar-brand"><h2>CERTifAI</h2></div>
|
|
<div class="sidebar-user">
|
|
<div class="user-avatar">MM</div>
|
|
<div>
|
|
<div class="user-name">Max Mustermann</div>
|
|
<div class="user-email">max@company.de</div>
|
|
</div>
|
|
</div>
|
|
<nav class="sidebar-nav">
|
|
<div class="nav-group">Main</div>
|
|
<a class="nav-item active">■ Dashboard</a>
|
|
<a class="nav-item">◊ Providers</a>
|
|
<a class="nav-item">✉ Chat</a>
|
|
<div class="nav-group">Developer</div>
|
|
<a class="nav-item">❖ Agents</a>
|
|
<a class="nav-item">⧉ Workflows</a>
|
|
<a class="nav-item">☰ Analytics</a>
|
|
<div class="nav-group">Organization</div>
|
|
<a class="nav-item">★ Billing</a>
|
|
<a class="nav-item">♟ Members</a>
|
|
</nav>
|
|
<div class="sidebar-footer">v0.1.0</div>
|
|
</aside>
|
|
|
|
<main class="main-content">
|
|
<div class="page-header">
|
|
<div>
|
|
<h1 class="page-title">Dashboard</h1>
|
|
<p class="page-subtitle">AI infrastructure overview</p>
|
|
</div>
|
|
<button class="btn-primary">New Search</button>
|
|
</div>
|
|
|
|
<div class="gradient-banner">
|
|
<div class="banner-text">
|
|
<h3>February 2026</h3>
|
|
<p>Your infrastructure is healthy. All models are responding.</p>
|
|
</div>
|
|
<div class="banner-stats">
|
|
<div>
|
|
<div class="banner-stat-value">$47.82</div>
|
|
<div class="banner-stat-label">Total Spend</div>
|
|
</div>
|
|
<div>
|
|
<div class="banner-stat-value">847K</div>
|
|
<div class="banner-stat-label">Tokens Used</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="stats-row">
|
|
<div class="stat-card">
|
|
<div class="stat-label">Active Models</div>
|
|
<div class="stat-value">5</div>
|
|
<div class="stat-sub">All responding</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Team Seats</div>
|
|
<div class="stat-value">4/25</div>
|
|
<div class="stat-sub">21 available</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Running Agents</div>
|
|
<div class="stat-value">3</div>
|
|
<div class="stat-sub">via LangGraph</div>
|
|
</div>
|
|
<div class="stat-card">
|
|
<div class="stat-label">Cycle Ends</div>
|
|
<div class="stat-value">Mar 1</div>
|
|
<div class="stat-sub" style="color:var(--text-muted)">3 days left</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content-grid">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="card-title">Model Usage</div>
|
|
<span class="card-badge">This Month</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-online"></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-online"></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-online"></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-online"></span>Active</td></tr>
|
|
<tr><td><span class="model-tag">Phi-3-mini</span></td><td>35K</td><td>$2.00</td><td style="color:var(--text-muted)">Idle</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="card-title">Services</div>
|
|
</div>
|
|
<div class="service-item">
|
|
<div>
|
|
<div class="service-name">LiteLLM Proxy</div>
|
|
<div class="service-url">llm-dev.meghsakha.com</div>
|
|
</div>
|
|
<span class="service-status online">Online</span>
|
|
</div>
|
|
<div class="service-item">
|
|
<div>
|
|
<div class="service-name">LangGraph</div>
|
|
<div class="service-url">agents.internal</div>
|
|
</div>
|
|
<span class="service-status online">Online</span>
|
|
</div>
|
|
<div class="service-item">
|
|
<div>
|
|
<div class="service-name">Langfuse</div>
|
|
<div class="service-url">analytics.internal</div>
|
|
</div>
|
|
<span class="service-status online">Online</span>
|
|
</div>
|
|
<div class="service-item">
|
|
<div>
|
|
<div class="service-name">LangFlow</div>
|
|
<div class="service-url">--</div>
|
|
</div>
|
|
<span class="service-status offline">Not Configured</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>
|