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

Module

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

🖥️ Mac Mini Server

Der Mac Mini mit Apple Silicon dient als lokaler Server fuer alle Breakpilot-Services. GPU-intensive Workloads koennen bei Bedarf auf vast.ai ausgelagert werden.

) }