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>
908 lines
24 KiB
HTML
908 lines
24 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 1: Nordic Frost</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700&family=Playfair+Display:wght@500;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
/* ========================================================================
|
|
TEMPLATE 1: NORDIC FROST
|
|
========================================================================
|
|
Mood: Clean, minimal, premium, Scandinavian-inspired
|
|
Audience: Enterprise, banking, legal, healthcare
|
|
Palette: Cool whites, slate greys, muted teal accents
|
|
Fonts: Playfair Display (headings) + DM Sans (body)
|
|
Feel: Trustworthy, understated luxury, whisper-quiet confidence
|
|
======================================================================== */
|
|
|
|
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
:root {
|
|
--bg-primary: #f7f8fa;
|
|
--bg-secondary: #ffffff;
|
|
--bg-tertiary: #eef0f4;
|
|
--bg-dark: #1a1e2e;
|
|
--bg-dark-card: #232838;
|
|
--text-primary: #1a1e2e;
|
|
--text-secondary: #5a6178;
|
|
--text-muted: #8b92a8;
|
|
--text-inverse: #f0f1f5;
|
|
--accent: #3a8f8b;
|
|
--accent-light: #4aada8;
|
|
--accent-muted: rgba(58, 143, 139, 0.08);
|
|
--accent-border: rgba(58, 143, 139, 0.2);
|
|
--border: #e4e7ee;
|
|
--border-subtle: #eef0f4;
|
|
--shadow-sm: 0 1px 3px rgba(26, 30, 46, 0.04);
|
|
--shadow-md: 0 4px 16px rgba(26, 30, 46, 0.06);
|
|
--shadow-lg: 0 8px 32px rgba(26, 30, 46, 0.08);
|
|
--radius-sm: 6px;
|
|
--radius-md: 10px;
|
|
--radius-lg: 16px;
|
|
--radius-xl: 24px;
|
|
}
|
|
|
|
body {
|
|
font-family: 'DM Sans', sans-serif;
|
|
color: var(--text-primary);
|
|
background: var(--bg-primary);
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Playfair Display', serif;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
/* ===== View Switcher ===== */
|
|
.view-switcher {
|
|
position: fixed;
|
|
top: 20px;
|
|
right: 20px;
|
|
z-index: 9999;
|
|
display: flex;
|
|
gap: 6px;
|
|
background: var(--bg-dark);
|
|
padding: 6px;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 24px rgba(0,0,0,0.2);
|
|
}
|
|
.view-switcher button {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
color: rgba(255,255,255,0.5);
|
|
transition: all 0.2s;
|
|
}
|
|
.view-switcher button.active {
|
|
background: var(--accent);
|
|
color: #fff;
|
|
}
|
|
.view-switcher button:hover:not(.active) {
|
|
color: rgba(255,255,255,0.8);
|
|
}
|
|
|
|
.view { display: none; }
|
|
.view.active { display: block; }
|
|
|
|
/* ===== LANDING PAGE ===== */
|
|
|
|
/* -- Navbar -- */
|
|
.landing-nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20px 64px;
|
|
background: rgba(255,255,255,0.8);
|
|
backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
.nav-logo {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 22px;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
letter-spacing: -0.3px;
|
|
}
|
|
.nav-logo span { color: var(--accent); }
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 36px;
|
|
list-style: none;
|
|
}
|
|
.nav-links a {
|
|
text-decoration: none;
|
|
color: var(--text-secondary);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
transition: color 0.2s;
|
|
}
|
|
.nav-links a:hover { color: var(--text-primary); }
|
|
.nav-cta {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: center;
|
|
}
|
|
.btn-ghost {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 10px 20px;
|
|
border: none;
|
|
background: transparent;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
border-radius: var(--radius-md);
|
|
transition: all 0.2s;
|
|
}
|
|
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-tertiary); }
|
|
.btn-primary {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
padding: 10px 24px;
|
|
border: none;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
border-radius: var(--radius-md);
|
|
transition: all 0.25s;
|
|
}
|
|
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
|
|
|
|
/* -- Hero -- */
|
|
.hero {
|
|
padding: 120px 64px 100px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -200px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 800px;
|
|
height: 800px;
|
|
background: radial-gradient(circle, rgba(58,143,139,0.06) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
.hero-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 16px;
|
|
background: var(--accent-muted);
|
|
border: 1px solid var(--accent-border);
|
|
border-radius: 100px;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--accent);
|
|
margin-bottom: 32px;
|
|
animation: fadeUp 0.6s ease;
|
|
}
|
|
.hero h1 {
|
|
font-size: 64px;
|
|
letter-spacing: -1.5px;
|
|
margin-bottom: 24px;
|
|
animation: fadeUp 0.6s ease 0.1s both;
|
|
}
|
|
.hero h1 em {
|
|
font-style: italic;
|
|
color: var(--accent);
|
|
}
|
|
.hero p {
|
|
font-size: 18px;
|
|
color: var(--text-secondary);
|
|
max-width: 560px;
|
|
margin: 0 auto 40px;
|
|
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: 'DM Sans', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
padding: 12px 28px;
|
|
border: 1.5px solid var(--border);
|
|
background: var(--bg-secondary);
|
|
color: var(--text-primary);
|
|
cursor: pointer;
|
|
border-radius: var(--radius-md);
|
|
transition: all 0.25s;
|
|
}
|
|
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
|
|
.btn-lg { padding: 14px 32px; font-size: 15px; }
|
|
|
|
/* -- Trust Bar -- */
|
|
.trust-bar {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 48px;
|
|
padding: 48px 64px;
|
|
border-top: 1px solid var(--border-subtle);
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
}
|
|
.trust-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: 14px;
|
|
color: var(--text-muted);
|
|
font-weight: 500;
|
|
}
|
|
.trust-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--accent-muted);
|
|
border-radius: var(--radius-sm);
|
|
color: var(--accent);
|
|
font-size: 16px;
|
|
}
|
|
|
|
/* -- Features -- */
|
|
.features {
|
|
padding: 100px 64px;
|
|
}
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 64px;
|
|
}
|
|
.section-header h2 {
|
|
font-size: 40px;
|
|
letter-spacing: -0.8px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.section-header p {
|
|
font-size: 16px;
|
|
color: var(--text-secondary);
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
}
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 24px;
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
.feature-card {
|
|
padding: 32px;
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
transition: all 0.3s ease;
|
|
}
|
|
.feature-card:hover {
|
|
border-color: var(--accent-border);
|
|
box-shadow: var(--shadow-md);
|
|
transform: translateY(-2px);
|
|
}
|
|
.feature-icon {
|
|
width: 44px;
|
|
height: 44px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--accent-muted);
|
|
border-radius: var(--radius-md);
|
|
color: var(--accent);
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.feature-card h3 {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 17px;
|
|
font-weight: 600;
|
|
margin-bottom: 10px;
|
|
}
|
|
.feature-card p {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* -- CTA Section -- */
|
|
.cta-section {
|
|
padding: 80px 64px;
|
|
text-align: center;
|
|
}
|
|
.cta-box {
|
|
max-width: 700px;
|
|
margin: 0 auto;
|
|
padding: 64px;
|
|
background: var(--bg-dark);
|
|
border-radius: var(--radius-xl);
|
|
color: var(--text-inverse);
|
|
}
|
|
.cta-box h2 {
|
|
font-size: 36px;
|
|
margin-bottom: 16px;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
.cta-box p {
|
|
font-size: 16px;
|
|
color: rgba(240,241,245,0.6);
|
|
margin-bottom: 32px;
|
|
}
|
|
.btn-white {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
padding: 14px 32px;
|
|
border: none;
|
|
background: #fff;
|
|
color: var(--bg-dark);
|
|
cursor: pointer;
|
|
border-radius: var(--radius-md);
|
|
transition: all 0.25s;
|
|
}
|
|
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.15); }
|
|
|
|
/* -- Footer -- */
|
|
.landing-footer {
|
|
padding: 48px 64px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 1px solid var(--border-subtle);
|
|
font-size: 13px;
|
|
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-primary); }
|
|
|
|
/* ===== DASHBOARD PAGE ===== */
|
|
|
|
.dashboard-layout {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
background: var(--bg-primary);
|
|
}
|
|
|
|
/* -- Sidebar -- */
|
|
.sidebar {
|
|
width: 260px;
|
|
min-width: 260px;
|
|
background: var(--bg-secondary);
|
|
border-right: 1px solid var(--border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
.sidebar-brand {
|
|
padding: 24px 20px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
}
|
|
.sidebar-brand h2 {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
letter-spacing: -0.3px;
|
|
}
|
|
.sidebar-brand h2 span { color: var(--accent); }
|
|
.sidebar-user {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 20px;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
}
|
|
.user-avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
background: var(--accent);
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
}
|
|
.user-info { min-width: 0; }
|
|
.user-name { font-size: 14px; font-weight: 600; }
|
|
.user-email { font-size: 12px; color: var(--text-muted); }
|
|
.sidebar-nav {
|
|
flex: 1;
|
|
padding: 16px 12px;
|
|
}
|
|
.nav-section-label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: var(--text-muted);
|
|
padding: 12px 12px 8px;
|
|
}
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 10px 12px;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
transition: all 0.15s;
|
|
text-decoration: none;
|
|
}
|
|
.nav-item:hover { background: var(--bg-tertiary); color: var(--text-primary); }
|
|
.nav-item.active {
|
|
background: var(--accent-muted);
|
|
color: var(--accent);
|
|
font-weight: 600;
|
|
}
|
|
.nav-item svg { width: 18px; height: 18px; opacity: 0.6; }
|
|
.nav-item.active svg { opacity: 1; }
|
|
.sidebar-footer {
|
|
padding: 16px 20px;
|
|
border-top: 1px solid var(--border-subtle);
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* -- Main Content -- */
|
|
.main-content {
|
|
flex: 1;
|
|
padding: 40px 48px;
|
|
min-width: 0;
|
|
}
|
|
.page-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-start;
|
|
margin-bottom: 36px;
|
|
}
|
|
.page-title { font-size: 28px; letter-spacing: -0.5px; }
|
|
.page-subtitle { font-size: 14px; color: var(--text-muted); margin-top: 4px; font-family: 'DM Sans', sans-serif; }
|
|
|
|
/* -- Stats Row -- */
|
|
.stats-row {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 20px;
|
|
margin-bottom: 36px;
|
|
}
|
|
.stat-card {
|
|
padding: 24px;
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
transition: all 0.2s;
|
|
}
|
|
.stat-card:hover { box-shadow: var(--shadow-sm); }
|
|
.stat-label {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
margin-bottom: 8px;
|
|
}
|
|
.stat-value {
|
|
font-family: 'Playfair Display', serif;
|
|
font-size: 28px;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
}
|
|
.stat-change {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
margin-top: 6px;
|
|
color: var(--accent);
|
|
}
|
|
|
|
/* -- Content Grid -- */
|
|
.content-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr;
|
|
gap: 24px;
|
|
}
|
|
.card {
|
|
background: var(--bg-secondary);
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
padding: 28px;
|
|
}
|
|
.card-title {
|
|
font-family: 'DM Sans', sans-serif;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.card-title .badge {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
padding: 4px 10px;
|
|
background: var(--accent-muted);
|
|
color: var(--accent);
|
|
border-radius: 100px;
|
|
}
|
|
|
|
/* -- Table -- */
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
.data-table th {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: var(--text-muted);
|
|
text-align: left;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.data-table td {
|
|
font-size: 14px;
|
|
padding: 14px 0;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
color: var(--text-primary);
|
|
}
|
|
.data-table tr:last-child td { border-bottom: none; }
|
|
.model-tag {
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 3px 10px;
|
|
background: var(--bg-tertiary);
|
|
border-radius: 100px;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* -- Status Indicator -- */
|
|
.status-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
margin-right: 8px;
|
|
}
|
|
.status-dot.online { background: #3a8f8b; box-shadow: 0 0 6px rgba(58,143,139,0.4); }
|
|
.status-dot.offline { background: #c4c4c4; }
|
|
|
|
/* -- Members List -- */
|
|
.member-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding: 12px 0;
|
|
border-bottom: 1px solid var(--border-subtle);
|
|
}
|
|
.member-item:last-child { border-bottom: none; }
|
|
.member-avatar {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
}
|
|
.member-name { font-size: 14px; font-weight: 500; }
|
|
.member-role { font-size: 12px; color: var(--text-muted); }
|
|
.member-role-badge {
|
|
margin-left: auto;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
padding: 3px 10px;
|
|
border-radius: 100px;
|
|
background: var(--bg-tertiary);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* ===== ANIMATIONS ===== */
|
|
@keyframes fadeUp {
|
|
from { opacity: 0; transform: translateY(16px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
.fade-in { animation: fadeUp 0.5s ease both; }
|
|
.fade-in-1 { animation-delay: 0.1s; }
|
|
.fade-in-2 { animation-delay: 0.2s; }
|
|
.fade-in-3 { animation-delay: 0.3s; }
|
|
.fade-in-4 { animation-delay: 0.4s; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- View Switcher -->
|
|
<div class="view-switcher">
|
|
<button class="active" onclick="showView('landing')">Landing</button>
|
|
<button onclick="showView('dashboard')">Dashboard</button>
|
|
</div>
|
|
|
|
<!-- ===== LANDING PAGE ===== -->
|
|
<div id="landing" class="view active">
|
|
<nav class="landing-nav">
|
|
<div class="nav-logo">CERT<span>if</span>AI</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#">Features</a></li>
|
|
<li><a href="#">How It Works</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">Get Started</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<section class="hero">
|
|
<div class="hero-badge">● GDPR-Compliant · 100% On-Premise</div>
|
|
<h1>Your AI infrastructure,<br><em>your rules.</em></h1>
|
|
<p>Self-hosted generative AI for companies that refuse to compromise on data sovereignty. Deploy, configure, and scale without leaving the EU.</p>
|
|
<div class="hero-actions">
|
|
<button class="btn-primary btn-lg">Start Free Trial</button>
|
|
<button class="btn-outline btn-lg">View Documentation</button>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="trust-bar">
|
|
<div class="trust-item">
|
|
<div class="trust-icon">☑</div>
|
|
100% On-Premise
|
|
</div>
|
|
<div class="trust-item">
|
|
<div class="trust-icon">⚖</div>
|
|
GDPR Compliant
|
|
</div>
|
|
<div class="trust-item">
|
|
<div class="trust-icon">⚑</div>
|
|
EU Data Residency
|
|
</div>
|
|
<div class="trust-item">
|
|
<div class="trust-icon">∅</div>
|
|
Zero Third-Party Access
|
|
</div>
|
|
</div>
|
|
|
|
<section class="features">
|
|
<div class="section-header">
|
|
<h2>Built for sovereignty</h2>
|
|
<p>Every component designed to keep your intellectual property exactly where it belongs.</p>
|
|
</div>
|
|
<div class="features-grid">
|
|
<div class="feature-card fade-in fade-in-1">
|
|
<div class="feature-icon">⚙</div>
|
|
<h3>Self-Hosted Infrastructure</h3>
|
|
<p>Deploy on your hardware or private cloud. No data ever leaves your perimeter.</p>
|
|
</div>
|
|
<div class="feature-card fade-in fade-in-2">
|
|
<div class="feature-icon">☍</div>
|
|
<h3>Multi-LLM Gateway</h3>
|
|
<p>Route between providers through a single API. LiteLLM proxy with full observability.</p>
|
|
</div>
|
|
<div class="feature-card fade-in fade-in-3">
|
|
<div class="feature-icon">❖</div>
|
|
<h3>Agent Orchestration</h3>
|
|
<p>Build and manage LangGraph agents with visual workflows and real-time monitoring.</p>
|
|
</div>
|
|
<div class="feature-card fade-in fade-in-4">
|
|
<div class="feature-icon">⏻</div>
|
|
<h3>SSO & Identity</h3>
|
|
<p>Keycloak-powered authentication. Connect your existing LDAP or SAML provider.</p>
|
|
</div>
|
|
<div class="feature-card fade-in fade-in-3">
|
|
<div class="feature-icon">☰</div>
|
|
<h3>Full Observability</h3>
|
|
<p>Langfuse integration for traces, cost tracking, and prompt engineering analytics.</p>
|
|
</div>
|
|
<div class="feature-card fade-in fade-in-4">
|
|
<div class="feature-icon">➔</div>
|
|
<h3>API-First Design</h3>
|
|
<p>RESTful endpoints, API key management, and MCP server support built in.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="cta-section">
|
|
<div class="cta-box">
|
|
<h2>Ready to take control?</h2>
|
|
<p>Deploy your private AI infrastructure in under 30 minutes. No credit card required.</p>
|
|
<button class="btn-white">Start Your Free Trial</button>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="landing-footer">
|
|
<span>© 2026 CERTifAI. All rights reserved.</span>
|
|
<div class="footer-links">
|
|
<a href="#">Privacy</a>
|
|
<a href="#">Impressum</a>
|
|
<a href="#">Terms</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<!-- ===== DASHBOARD PAGE ===== -->
|
|
<div id="dashboard" class="view">
|
|
<div class="dashboard-layout">
|
|
<aside class="sidebar">
|
|
<div class="sidebar-brand">
|
|
<h2>CERT<span>if</span>AI</h2>
|
|
</div>
|
|
<div class="sidebar-user">
|
|
<div class="user-avatar">MM</div>
|
|
<div class="user-info">
|
|
<div class="user-name">Max Mustermann</div>
|
|
<div class="user-email">max@company.de</div>
|
|
</div>
|
|
</div>
|
|
<nav class="sidebar-nav">
|
|
<div class="nav-section-label">Main</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-section-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-section-label">Organization</div>
|
|
<a class="nav-item" href="#">★ Billing</a>
|
|
<a class="nav-item" href="#">❖ Members</a>
|
|
</nav>
|
|
<div class="sidebar-footer">CERTifAI 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 news and system overview</p>
|
|
</div>
|
|
<button class="btn-primary">New Search</button>
|
|
</div>
|
|
|
|
<div class="stats-row">
|
|
<div class="stat-card fade-in fade-in-1">
|
|
<div class="stat-label">Total Spend</div>
|
|
<div class="stat-value">$47.82</div>
|
|
<div class="stat-change">+12% this month</div>
|
|
</div>
|
|
<div class="stat-card fade-in fade-in-2">
|
|
<div class="stat-label">Total Tokens</div>
|
|
<div class="stat-value">847K</div>
|
|
<div class="stat-change">of 1M limit</div>
|
|
</div>
|
|
<div class="stat-card fade-in fade-in-3">
|
|
<div class="stat-label">Active Models</div>
|
|
<div class="stat-value">5</div>
|
|
<div class="stat-change"><span class="status-dot online"></span>LiteLLM Online</div>
|
|
</div>
|
|
<div class="stat-card fade-in fade-in-4">
|
|
<div class="stat-label">Team Members</div>
|
|
<div class="stat-value">4/25</div>
|
|
<div class="stat-change">Seats used</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="content-grid">
|
|
<div class="card">
|
|
<div class="card-title">
|
|
Usage by Model
|
|
<span class="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-dot 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-dot 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-dot 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-dot online"></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 offline"></span>Idle</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-title">Team</div>
|
|
<div class="member-item">
|
|
<div class="member-avatar" style="background:#3a8f8b">MM</div>
|
|
<div>
|
|
<div class="member-name">Max Mustermann</div>
|
|
<div class="member-role">max@company.de</div>
|
|
</div>
|
|
<span class="member-role-badge">Admin</span>
|
|
</div>
|
|
<div class="member-item">
|
|
<div class="member-avatar" style="background:#6d85c6">EM</div>
|
|
<div>
|
|
<div class="member-name">Erika Musterfrau</div>
|
|
<div class="member-role">erika@company.de</div>
|
|
</div>
|
|
<span class="member-role-badge">Member</span>
|
|
</div>
|
|
<div class="member-item">
|
|
<div class="member-avatar" style="background:#8b6db8">JS</div>
|
|
<div>
|
|
<div class="member-name">Johann Schmidt</div>
|
|
<div class="member-role">johann@company.de</div>
|
|
</div>
|
|
<span class="member-role-badge">Member</span>
|
|
</div>
|
|
<div class="member-item">
|
|
<div class="member-avatar" style="background:#b8886d">AW</div>
|
|
<div>
|
|
<div class="member-name">Anna Weber</div>
|
|
<div class="member-role">anna@company.de</div>
|
|
</div>
|
|
<span class="member-role-badge">Viewer</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>
|