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>
22 lines
940 B
TypeScript
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>
|
|
)
|
|
}
|