'use client' import { getCategoryById } from '@/lib/navigation' import { ModuleCard } from '@/components/common/ModuleCard' import { PagePurpose } from '@/components/common/PagePurpose' export default function AIPage() { const category = getCategoryById('ai') if (!category) { return
Kategorie nicht gefunden
} return (
{/* Page Purpose */} {/* Modules Grid */}

Module

{category.modules.map((module) => ( ))}
{/* Info Section */}

🧠 DSGVO-konforme KI

Alle KI-Modelle koennen lokal auf dem Mac Mini mit Ollama ausgefuehrt werden. Keine Daten werden an externe Cloud-Anbieter gesendet, sofern nicht explizit konfiguriert.

) }