2026-03-18 17:50:41 +01:00
|
|
|
import { AppShell } from '../../design-system/layout/AppShell/AppShell'
|
|
|
|
|
import { Sidebar } from '../../design-system/layout/Sidebar/Sidebar'
|
|
|
|
|
import { TopBar } from '../../design-system/layout/TopBar/TopBar'
|
|
|
|
|
import { EmptyState } from '../../design-system/primitives/EmptyState/EmptyState'
|
|
|
|
|
import { SIDEBAR_APPS } from '../../mocks/sidebar'
|
|
|
|
|
|
|
|
|
|
export function ApiDocs() {
|
|
|
|
|
return (
|
|
|
|
|
<AppShell sidebar={<Sidebar apps={SIDEBAR_APPS} />}>
|
|
|
|
|
<TopBar
|
|
|
|
|
breadcrumb={[{ label: 'API Documentation' }]}
|
|
|
|
|
environment="PRODUCTION"
|
2026-03-18 20:06:25 +01:00
|
|
|
|
2026-03-18 17:50:41 +01:00
|
|
|
user={{ name: 'hendrik' }}
|
|
|
|
|
/>
|
|
|
|
|
<EmptyState
|
|
|
|
|
title="API Documentation"
|
|
|
|
|
description="API documentation coming soon."
|
|
|
|
|
/>
|
|
|
|
|
</AppShell>
|
|
|
|
|
)
|
|
|
|
|
}
|