22 lines
823 B
TypeScript
22 lines
823 B
TypeScript
export const navigation = {
|
||
menuItems: [
|
||
{ section: 'About', label: 'Über mich' },
|
||
{ section: 'Services', label: 'Leistungen' },
|
||
{ section: 'Skills', label: 'Fähigkeiten' },
|
||
{ section: 'Certifications', label: 'Zertifikate' },
|
||
{ section: 'Projects', label: 'Projekte' },
|
||
{ section: 'Contact', label: 'Kontakt' },
|
||
],
|
||
landingMenuItems: [
|
||
{ section: 'About', label: 'Über mich' },
|
||
{ section: 'Winnings', label: 'Vorteile' },
|
||
{ section: 'Experience', label: 'Erfahrung' },
|
||
{ section: 'Processes', label: 'Wie ich arbeite' },
|
||
{ section: 'Projects', label: 'Projekte' },
|
||
{ section: 'References', label: 'Referenzen' },
|
||
{ section: 'Contact', label: 'Kontakt' },
|
||
],
|
||
mobileMenuAriaLabel: 'Menü öffnen',
|
||
logoAlt: 'Sascha Bach – Barrierefreie Webentwicklung',
|
||
};
|