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

Module

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

📬 Ende-zu-Ende-Verschluesselung

Matrix-Kommunikation ist standardmaessig Ende-zu-Ende verschluesselt. Jitsi-Konferenzen werden nicht auf dem Server gespeichert (optional: Aufnahme mit Jibri).

) }