Compare commits
3 Commits
38059ebfe3
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
038fc2f749 | ||
|
|
a9bc16791f | ||
|
|
00f778ca9b |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -170,6 +170,7 @@ fix_permissions.txt
|
|||||||
# Compiled Go Binaries
|
# Compiled Go Binaries
|
||||||
# ============================================
|
# ============================================
|
||||||
billing-service/billing-service
|
billing-service/billing-service
|
||||||
|
ai-compliance-sdk/server
|
||||||
consent-service/server
|
consent-service/server
|
||||||
edu-search-service/server
|
edu-search-service/server
|
||||||
edu-search-service/edu-search-service
|
edu-search-service/edu-search-service
|
||||||
|
|||||||
@@ -194,10 +194,8 @@ export function Sidebar({ onRoleChange }: SidebarProps) {
|
|||||||
{/* Categories */}
|
{/* Categories */}
|
||||||
<div className="px-2 space-y-1">
|
<div className="px-2 space-y-1">
|
||||||
{visibleCategories.map((category) => {
|
{visibleCategories.map((category) => {
|
||||||
const categoryHref = category.id === 'compliance-sdk' ? '/sdk' : `/${category.id}`
|
const categoryHref = `/${category.id}`
|
||||||
const isCategoryActive = category.id === 'compliance-sdk'
|
const isCategoryActive = pathname.startsWith(categoryHref)
|
||||||
? category.modules.some(m => pathname.startsWith(m.href))
|
|
||||||
: pathname.startsWith(categoryHref)
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div key={category.id}>
|
<div key={category.id}>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
* All DSGVO and Compliance modules are now consolidated under the SDK.
|
* All DSGVO and Compliance modules are now consolidated under the SDK.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export type CategoryId = 'compliance-sdk' | 'ai' | 'education' | 'website' | 'sdk-docs'
|
export type CategoryId = 'ai' | 'education' | 'website' | 'sdk-docs'
|
||||||
|
|
||||||
export interface NavModule {
|
export interface NavModule {
|
||||||
id: string
|
id: string
|
||||||
@@ -30,27 +30,6 @@ export interface NavCategory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const navigation: NavCategory[] = [
|
export const navigation: NavCategory[] = [
|
||||||
// =========================================================================
|
|
||||||
// Compliance SDK - Alle Datenschutz-, Compliance- und SDK-Module
|
|
||||||
// =========================================================================
|
|
||||||
{
|
|
||||||
id: 'compliance-sdk',
|
|
||||||
name: 'Compliance SDK',
|
|
||||||
icon: 'shield',
|
|
||||||
color: '#8b5cf6', // Violet-500
|
|
||||||
colorClass: 'compliance-sdk',
|
|
||||||
description: 'DSGVO, Audit, GRC & SDK-Werkzeuge',
|
|
||||||
modules: [
|
|
||||||
{
|
|
||||||
id: 'catalog-manager',
|
|
||||||
name: 'Katalogverwaltung',
|
|
||||||
href: '/dashboard/catalog-manager',
|
|
||||||
description: 'SDK-Kataloge & Auswahltabellen',
|
|
||||||
purpose: 'Zentrale Verwaltung aller Dropdown- und Auswahltabellen im SDK. Systemkataloge (Risiken, Massnahmen, Vorlagen) anzeigen und benutzerdefinierte Eintraege ergaenzen, bearbeiten und loeschen.',
|
|
||||||
audience: ['DSB', 'Compliance Officer', 'Administratoren'],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
// KI & Automatisierung
|
// KI & Automatisierung
|
||||||
// =========================================================================
|
// =========================================================================
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ export const roles: Role[] = [
|
|||||||
name: 'Entwickler',
|
name: 'Entwickler',
|
||||||
description: 'Voller Zugriff auf alle Bereiche',
|
description: 'Voller Zugriff auf alle Bereiche',
|
||||||
icon: 'code',
|
icon: 'code',
|
||||||
visibleCategories: ['compliance-sdk', 'ai', 'education', 'website'],
|
visibleCategories: ['ai', 'education', 'website'],
|
||||||
color: 'bg-primary-100 border-primary-300 text-primary-700',
|
color: 'bg-primary-100 border-primary-300 text-primary-700',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -31,7 +31,7 @@ export const roles: Role[] = [
|
|||||||
name: 'Manager',
|
name: 'Manager',
|
||||||
description: 'Executive Uebersicht',
|
description: 'Executive Uebersicht',
|
||||||
icon: 'chart',
|
icon: 'chart',
|
||||||
visibleCategories: ['compliance-sdk', 'website'],
|
visibleCategories: ['website'],
|
||||||
color: 'bg-blue-100 border-blue-300 text-blue-700',
|
color: 'bg-blue-100 border-blue-300 text-blue-700',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -39,7 +39,7 @@ export const roles: Role[] = [
|
|||||||
name: 'Auditor',
|
name: 'Auditor',
|
||||||
description: 'Compliance Pruefung',
|
description: 'Compliance Pruefung',
|
||||||
icon: 'clipboard',
|
icon: 'clipboard',
|
||||||
visibleCategories: ['compliance-sdk'],
|
visibleCategories: [],
|
||||||
color: 'bg-amber-100 border-amber-300 text-amber-700',
|
color: 'bg-amber-100 border-amber-300 text-amber-700',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -47,7 +47,7 @@ export const roles: Role[] = [
|
|||||||
name: 'DSB',
|
name: 'DSB',
|
||||||
description: 'Datenschutzbeauftragter',
|
description: 'Datenschutzbeauftragter',
|
||||||
icon: 'shield',
|
icon: 'shield',
|
||||||
visibleCategories: ['compliance-sdk'],
|
visibleCategories: [],
|
||||||
color: 'bg-purple-100 border-purple-300 text-purple-700',
|
color: 'bg-purple-100 border-purple-300 text-purple-700',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -113,7 +113,6 @@ Beispiele nach Slide-Kontext:
|
|||||||
- Nach Financials: "[Q] Wie realistisch ist die Umsatzprognose?"
|
- Nach Financials: "[Q] Wie realistisch ist die Umsatzprognose?"
|
||||||
- Nach The Ask: "[Q] Was passiert nach der Pre-Seed-Runde?"
|
- Nach The Ask: "[Q] Was passiert nach der Pre-Seed-Runde?"
|
||||||
|
|
||||||
|
|
||||||
## Einschraenkungen
|
## Einschraenkungen
|
||||||
- Keine Rechtsberatung geben
|
- Keine Rechtsberatung geben
|
||||||
- Keine Garantien fuer Renditen oder Exits
|
- Keine Garantien fuer Renditen oder Exits
|
||||||
|
|||||||
Reference in New Issue
Block a user