mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 10:46:43 +02:00
New Astro landing page at services/it-landing/ targeting European organizations that need independent, GDPR-compliant IT infrastructure. 10 sections: - Hero: "Technologische Souveränität für Europa" with 75% self-hosted stat - Problem: US Cloud Act, vendor lock-in, GDPR conflicts, Schrems II - Solution: IndependenceBar (animated 75% progress) + 3 principles - Infrastructure Grid: 21 components color-coded (green/amber/red) - GDPR: 6 compliance cards (all rights, breach notification, AI safety) - Open Source Stack: 8 comparisons (PostgreSQL vs DynamoDB, etc.) - Target Audiences: Government, healthcare, education, SMBs - Roadmap: Timeline from current state to 90%+ independence (2027) - FAQ: 8 questions about sovereignty, Cloud Act, local AI, costs - CTA: Contact for consultation Features: - Light EU Sovereign theme (#003399 EU blue, professional B2B design) - German (default) + English (/en/) with Astro i18n - Custom components: InfrastructureGrid, IndependenceBar (scroll animation) - Data from docs/TECH_STACK_INDEPENDENCE.md (real infrastructure stats) - Legal pages: Impressum, Datenschutz - Deploy: pnpm deploy:landing:it → Cloudflare Pages Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
55 lines
2 KiB
TypeScript
55 lines
2 KiB
TypeScript
export const roadmapItems = [
|
|
{
|
|
badge: '✅ Abgeschlossen',
|
|
title: 'Lokale KI-Infrastruktur',
|
|
text: 'LLM (Ollama + Gemma 3), Bilderzeugung (FLUX.2 klein), Spracherkennung (Whisper Large V3) und Sprachsynthese (Piper + Kokoro) laufen vollständig lokal.',
|
|
},
|
|
{
|
|
badge: 'Q2 2026',
|
|
title: 'Cloud-KI eliminieren',
|
|
text: 'Picture App auf lokales mana-image-gen migrieren. Alle LLM-Calls über zentrales mana-llm Gateway routen mit automatischem Google-Fallback.',
|
|
},
|
|
{
|
|
badge: 'Q3 2026',
|
|
title: 'E-Mail-Unabhängigkeit',
|
|
text: 'Brevo SMTP durch self-hosted Postal oder Stalwart ersetzen. DNS bei eigenem europäischen Provider.',
|
|
},
|
|
{
|
|
badge: 'Q4 2026',
|
|
title: 'Landing Pages self-hosted',
|
|
text: 'Statische Seiten direkt vom eigenen Server ausliefern statt über Cloudflare Pages. Nginx/Caddy Container.',
|
|
},
|
|
{
|
|
badge: '2027',
|
|
title: 'Server-Redundanz & 90%+ Unabhängigkeit',
|
|
text: 'Zweiter Server für Hochverfügbarkeit. PostgreSQL Streaming Replication. Kein Single Point of Failure. Ziel: über 90% Self-Hosted.',
|
|
},
|
|
];
|
|
|
|
export const roadmapItemsEn = [
|
|
{
|
|
badge: '✅ Completed',
|
|
title: 'Local AI Infrastructure',
|
|
text: 'LLM (Ollama + Gemma 3), image generation (FLUX.2), speech recognition (Whisper), and text-to-speech (Piper + Kokoro) run fully locally.',
|
|
},
|
|
{
|
|
badge: 'Q2 2026',
|
|
title: 'Eliminate Cloud AI',
|
|
text: 'Migrate Picture App to local mana-image-gen. Route all LLM calls through central mana-llm gateway with automatic Google fallback.',
|
|
},
|
|
{
|
|
badge: 'Q3 2026',
|
|
title: 'Email Independence',
|
|
text: 'Replace Brevo SMTP with self-hosted Postal or Stalwart. DNS with own European provider.',
|
|
},
|
|
{
|
|
badge: 'Q4 2026',
|
|
title: 'Self-Hosted Landing Pages',
|
|
text: 'Serve static sites directly from own server instead of Cloudflare Pages.',
|
|
},
|
|
{
|
|
badge: '2027',
|
|
title: 'Server Redundancy & 90%+ Independence',
|
|
text: 'Second server for high availability. PostgreSQL streaming replication. No single point of failure.',
|
|
},
|
|
];
|