Skip to content
Snippets Groups Projects
Commit 1d2f83c5 authored by Yves Adler's avatar Yves Adler
Browse files

feat: format menu config (planning#874)

parent fb36a1db
No related branches found
No related tags found
No related merge requests found
......@@ -73,60 +73,74 @@ module.exports = {
height: 32,
},
items: [
{type: 'dropdown', label: 'Start',
{
type: 'dropdown',
label: 'Start',
items: [
{href: '/docs/', label: 'Intro'},
{href: '/docs/', label: 'Intro'},
{type: 'doc', label: 'Startseite', docId: 'intro'},
{type: 'docSidebar', label: 'Anträge senden und empfangen', sidebarId: 'nutzenSidebar'},
{type: 'docSidebar', label: 'Anträge senden und empfangen', sidebarId: 'nutzenSidebar'},
],
},
{type: 'dropdown', label: 'Infos',
{
type: 'dropdown',
label: 'Infos',
items: [
{type: 'docSidebar', label: 'Informationen für Entscheider:innen', sidebarId: 'EntscheiderSidebar'},
{type: 'docSidebar', label: 'Informationen für Verantwortliche', sidebarId: 'VerantwortlicheSidebar'},
{type: 'docSidebar', label: 'Informationen für Entwickler:innen', sidebarId: 'EntwicklerSidebar'},
{type: 'docSidebar', label: 'Informationen für Entscheider:innen', sidebarId: 'EntscheiderSidebar'},
{type: 'docSidebar', label: 'Informationen für Verantwortliche', sidebarId: 'VerantwortlicheSidebar'},
{type: 'docSidebar', label: 'Informationen für Entwickler:innen', sidebarId: 'EntwicklerSidebar'},
],
},
{type: 'dropdown', label: 'Mediathek',
{
type: 'dropdown',
label: 'Mediathek',
items: [
{type: 'docSidebar', label: 'Videos', sidebarId: 'Mediatheksidebar'},
{type: 'docSidebar', label: 'Dokumente', sidebarId: 'Documementesidebar'},
{type: 'docSidebar', label: 'Pressesamlung', sidebarId: 'PressesammlungSidebar'},
{type: 'docSidebar', label: 'Glossar', sidebarId: 'GlossarySidebar'}
{type: 'docSidebar', label: 'Videos', sidebarId: 'Mediatheksidebar'},
{type: 'docSidebar', label: 'Dokumente', sidebarId: 'Documementesidebar'},
{type: 'docSidebar', label: 'Pressesamlung', sidebarId: 'PressesammlungSidebar'},
{type: 'docSidebar', label: 'Glossar', sidebarId: 'GlossarySidebar'}
],
},
{type: 'dropdown',
{
type: 'dropdown',
label: 'Weiterentwicklung',
items: [
{type: 'docSidebar', label: "Roadmap", sidebarId: 'RodmapSidebar'},
{type: 'docSidebar', label: "Changelog", sidebarId: 'ChangelogSidebar'},
{type: 'docSidebar', label: "Abkündigungen", sidebarId: 'AbkuendigungsSidebar'},
{type: 'docSidebar', label: "Dashboard", sidebarId: 'DashboardSidebar'},
{type: 'docSidebar', label: "Roadmap", sidebarId: 'RodmapSidebar'},
{type: 'docSidebar', label: "Changelog", sidebarId: 'ChangelogSidebar'},
{type: 'docSidebar', label: "Abkündigungen", sidebarId: 'AbkuendigungsSidebar'},
{type: 'docSidebar', label: "Dashboard", sidebarId: 'DashboardSidebar'},
],
},
{ to: '/docs/faq', label: 'FAQ'},
{ type: 'dropdown',
{
to: '/docs/faq',
label: 'FAQ',
},
{
type: 'dropdown',
label: 'APIs',
items: [
{ type: 'docSidebar', label: 'Destination API', sidebarId: 'DestinationApiSidebar' },
{ type: 'docSidebar', label: 'Submission API', sidebarId: 'SubmissionApiSidebar' },
{ type: 'docSidebar', label: 'Routing API', sidebarId: 'RoutingApiSidebar' },
{ type: 'docSidebar', label: 'Self Service API', sidebarId: 'SelfServiceApiSidebar' }
],
{type: 'docSidebar', label: 'Destination API', sidebarId: 'DestinationApiSidebar'},
{type: 'docSidebar', label: 'Submission API', sidebarId: 'SubmissionApiSidebar'},
{type: 'docSidebar', label: 'Routing API', sidebarId: 'RoutingApiSidebar'},
{type: 'docSidebar', label: 'Self Service API', sidebarId: 'SelfServiceApiSidebar'}
],
},
{ type: 'dropdown',
{
type: 'dropdown',
label: 'SDKs',
items: [
{ type: 'docSidebar', label: 'Übersicht', sidebarId: 'OverviewSdkSidebar' },
{ type: 'docSidebar', label: '.NET SDK', sidebarId: 'NetSdkSidebar' },
{ type: 'docSidebar', label: 'Java SDK', sidebarId: 'JavaSdkSidebar' }
{type: 'docSidebar', label: 'Übersicht', sidebarId: 'OverviewSdkSidebar'},
{type: 'docSidebar', label: '.NET SDK', sidebarId: 'NetSdkSidebar'},
{type: 'docSidebar', label: 'Java SDK', sidebarId: 'JavaSdkSidebar'}
],
},
{ type: 'dropdown', label: 'Kontakt',
{
type: 'dropdown',
label: 'Kontakt',
items: [
{ type: 'docSidebar', label: 'Support / Anregungen', sidebarId: 'kontaktSidebar' },
{ type: 'docSidebar', label: 'Newsletter', sidebarId: 'NewsletterSidebar' },
{ type: 'docSidebar', label: 'Impressum', sidebarId: 'ImpressumSidebar' }
{type: 'docSidebar', label: 'Support / Anregungen', sidebarId: 'kontaktSidebar'},
{type: 'docSidebar', label: 'Newsletter', sidebarId: 'NewsletterSidebar'},
{type: 'docSidebar', label: 'Impressum', sidebarId: 'ImpressumSidebar'}
],
},
// {
......@@ -134,8 +148,15 @@ module.exports = {
// {type: 'doc', label: '🚧 JWK Generator', docId: 'tools/jwk-gen'}
// ]
// },
{to: '/termine', label: 'Termine'},
{to: 'https://portal.auth-testing.fit-connect.fitko.dev/landing', label: 'Self-Service-Portal', position: 'right'}
{
to: '/termine',
label: 'Termine',
},
{
to: 'https://portal.auth-testing.fit-connect.fitko.dev/landing',
label: 'Self-Service-Portal',
position: 'right'
}
],
},
footer: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment