This repository has been archived on 2026-02-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
breakpilot-pwa/pitch-deck/components/slides/AnnexDevOpsSlide.tsx
BreakPilot Dev b464366341
Some checks failed
ci/woodpecker/push/integration Pipeline failed
ci/woodpecker/push/main Pipeline failed
CI/CD Pipeline / Go Tests (push) Has been cancelled
CI/CD Pipeline / Python Tests (push) Has been cancelled
CI/CD Pipeline / Website Tests (push) Has been cancelled
CI/CD Pipeline / Linting (push) Has been cancelled
CI/CD Pipeline / Security Scan (push) Has been cancelled
CI/CD Pipeline / Docker Build & Push (push) Has been cancelled
CI/CD Pipeline / Integration Tests (push) Has been cancelled
Security Scanning / Dependency Vulnerability Scan (push) Has been cancelled
Security Scanning / Go Security Scan (push) Has been cancelled
Security Scanning / Python Security Scan (push) Has been cancelled
Security Scanning / Node.js Security Scan (push) Has been cancelled
Security Scanning / Docker Image Security (push) Has been cancelled
Security Scanning / Security Summary (push) Has been cancelled
Tests / All Checks Passed (push) Has been cancelled
Tests / Go Tests (push) Has been cancelled
Tests / Python Tests (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / CI Summary (push) Has been cancelled
Security Scanning / Secret Scanning (push) Has been cancelled
Tests / Integration Tests (push) Has been cancelled
Tests / Go Lint (push) Has been cancelled
Tests / Python Lint (push) Has been cancelled
Tests / Security Scan (push) Has been cancelled
feat: Add staged funding model, financial compute engine, annex slides and UI enhancements
Restructure financial plan from single 200k SAFE to realistic staged funding
(25k Stammkapital, 25k Angel, 200k Wandeldarlehen, 1M Series A = 1.25M total).
Add 60-month compute engine with CAPEX/OPEX accounting, cash constraints,
hardware financing (30% upfront / 70% leasing), and revenue-based hiring caps.
Rebuild TheAskSlide with 4-event funding timeline, update i18n (DE/EN),
chat agent core messages, and add 15 new annex/technology slides with
supporting UI components (KPICard, RunwayGauge, WaterfallChart, etc.).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 21:20:02 +01:00

147 lines
5.8 KiB
TypeScript

'use client'
import { motion } from 'framer-motion'
import { GitBranch, Code, Hammer, TestTube, Rocket, ArrowRight, Container, GitMerge, Activity, Bell } from 'lucide-react'
import { Language } from '@/lib/types'
import GradientText from '../ui/GradientText'
import FadeInView from '../ui/FadeInView'
interface AnnexDevOpsSlideProps {
lang: Language
}
export default function AnnexDevOpsSlide({ lang }: AnnexDevOpsSlideProps) {
const pipelineSteps = [
{ name: 'Code', icon: GitBranch, color: 'from-blue-400 to-blue-600' },
{ name: 'Gitea', icon: Code, color: 'from-green-400 to-green-600' },
{ name: 'Woodpecker CI', icon: Hammer, color: 'from-orange-400 to-orange-600' },
{ name: 'Build', icon: Container, color: 'from-purple-400 to-purple-600' },
{ name: 'Test', icon: TestTube, color: 'from-pink-400 to-pink-600' },
{ name: 'Deploy', icon: Rocket, color: 'from-cyan-400 to-cyan-600' }
]
const devOpsTools = [
{
title: 'Woodpecker CI',
icon: Hammer,
accentColor: 'from-orange-400 to-orange-600',
items: [
lang === 'de' ? 'Open-Source CI/CD (Apache 2.0)' : 'Open-source CI/CD (Apache 2.0)',
lang === 'de' ? 'Docker-native Builds' : 'Docker-native builds',
lang === 'de' ? 'Automatische Tests bei jedem Commit' : 'Automatic testing on every commit',
lang === 'de' ? 'Build-Zeit: ~3 min' : 'Build time: ~3 min'
]
},
{
title: 'Docker Compose',
icon: Container,
accentColor: 'from-blue-400 to-blue-600',
items: [
lang === 'de' ? '30+ Services orchestriert' : '30+ services orchestrated',
lang === 'de' ? 'Health Checks für alle Container' : 'Health checks for all containers',
lang === 'de' ? 'Automatischer Neustart bei Fehler' : 'Automatic restart on failure',
lang === 'de' ? 'Ressourcenlimits konfiguriert' : 'Resource limits configured'
]
},
{
title: 'Gitea',
icon: GitMerge,
accentColor: 'from-green-400 to-green-600',
items: [
lang === 'de' ? 'Self-hosted Git Server' : 'Self-hosted Git server',
lang === 'de' ? 'Keine GitHub/GitLab Abhängigkeit' : 'No GitHub/GitLab dependency',
lang === 'de' ? 'Issue Tracking integriert' : 'Issue tracking integrated',
lang === 'de' ? 'Mirror zu externem Backup' : 'Mirror to external backup'
]
},
{
title: 'Monitoring',
icon: Activity,
accentColor: 'from-purple-400 to-purple-600',
items: [
lang === 'de' ? 'Night Scheduler für Auto-Shutdown' : 'Night Scheduler for auto-shutdown',
lang === 'de' ? 'Container Health Monitoring' : 'Container health monitoring',
lang === 'de' ? 'Log-Aggregation' : 'Log aggregation',
lang === 'de' ? 'Alerting bei Fehlern' : 'Alerting on failures'
]
}
]
return (
<div className="max-w-6xl mx-auto px-4">
<FadeInView>
<div className="text-center mb-12">
<h2 className="text-5xl font-bold mb-4">
<GradientText>
{lang === 'de' ? 'DevOps & CI/CD' : 'DevOps & CI/CD'}
</GradientText>
</h2>
<p className="text-xl text-white/60">
{lang === 'de'
? 'Automatisierte Entwicklungs- und Deployment-Pipeline'
: 'Automated development and deployment pipeline'}
</p>
</div>
</FadeInView>
{/* CI/CD Pipeline Visualization */}
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.1 }}
className="bg-white/[0.04] border border-white/[0.06] rounded-xl p-6 mb-8"
>
<h3 className="text-lg font-semibold mb-6 text-white/90 text-center">
{lang === 'de' ? 'CI/CD Pipeline' : 'CI/CD Pipeline'}
</h3>
<div className="flex items-center justify-between gap-2">
{pipelineSteps.map((step, index) => (
<div key={step.name} className="flex items-center gap-2">
<motion.div
initial={{ opacity: 0, scale: 0.8 }}
animate={{ opacity: 1, scale: 1 }}
transition={{ delay: 0.2 + index * 0.1 }}
className="flex flex-col items-center"
>
<div className={`w-16 h-16 rounded-lg bg-gradient-to-br ${step.color} flex items-center justify-center mb-2`}>
<step.icon className="w-8 h-8 text-white" />
</div>
<span className="text-xs text-white/70 text-center">{step.name}</span>
</motion.div>
{index < pipelineSteps.length - 1 && (
<ArrowRight className="w-5 h-5 text-white/30 flex-shrink-0" />
)}
</div>
))}
</div>
</motion.div>
{/* DevOps Tools Grid */}
<div className="grid md:grid-cols-2 gap-6">
{devOpsTools.map((tool, index) => (
<motion.div
key={tool.title}
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ delay: 0.8 + index * 0.1 }}
className="bg-white/[0.04] border border-white/[0.06] rounded-xl p-4"
>
<div className={`w-12 h-12 rounded-lg bg-gradient-to-br ${tool.accentColor} flex items-center justify-center mb-4`}>
<tool.icon className="w-6 h-6 text-white" />
</div>
<h3 className="text-xl font-semibold mb-4 text-white">{tool.title}</h3>
<ul className="space-y-2">
{tool.items.map((item, itemIndex) => (
<li key={itemIndex} className="text-sm text-white/70 flex items-start">
<span className="mr-2 text-white/40"></span>
<span>{item}</span>
</li>
))}
</ul>
</motion.div>
))}
</div>
</div>
)
}