Files
breakpilot-compliance/developer-portal/app/development/byoeh/page.tsx
Sharang Parnerkar 9ec72ed681 refactor(developer-portal): split iace, docs, byoeh pages
Extract each page into colocated _components/ sections to bring
page.tsx files from 1008/891/769 LOC down to 57/23/21 LOC,
well within the 500-line hard cap.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 08:45:13 +02:00

22 lines
940 B
TypeScript

import { DevPortalLayout } from '@/components/DevPortalLayout'
import { ByoehIntroSection } from './_components/ByoehIntroSection'
import { SdkPseudonymSection } from './_components/SdkPseudonymSection'
import { EncryptionNamespaceSection } from './_components/EncryptionNamespaceSection'
import { RagKeySharingSection } from './_components/RagKeySharingSection'
import { AuditApiSummarySection } from './_components/AuditApiSummarySection'
export default function BYOEHDocsPage() {
return (
<DevPortalLayout
title="Namespace-Technologie fuer Geschaeftskunden"
description="Wie das SDK sensible Daten anonymisiert, verschluesselt und sicher in der Cloud verarbeiten laesst -- ohne dass der Betreiber Zugriff auf Klartext hat."
>
<ByoehIntroSection />
<SdkPseudonymSection />
<EncryptionNamespaceSection />
<RagKeySharingSection />
<AuditApiSummarySection />
</DevPortalLayout>
)
}