22 lines
798 B
TypeScript
22 lines
798 B
TypeScript
export const navigation = {
|
||
menuItems: [
|
||
{ section: 'About', label: 'About' },
|
||
{ section: 'Services', label: 'Services' },
|
||
{ section: 'Skills', label: 'Skills' },
|
||
{ section: 'Certifications', label: 'Certifications' },
|
||
{ section: 'Projects', label: 'Projects' },
|
||
{ section: 'Contact', label: 'Contact' },
|
||
],
|
||
landingMenuItems: [
|
||
{ section: 'About', label: 'About' },
|
||
{ section: 'Winnings', label: 'Benefits' },
|
||
{ section: 'Experience', label: 'Experience' },
|
||
{ section: 'Processes', label: 'How I Work' },
|
||
{ section: 'Projects', label: 'Projects' },
|
||
{ section: 'References', label: 'References' },
|
||
{ section: 'Contact', label: 'Contact' },
|
||
],
|
||
mobileMenuAriaLabel: 'Open menu',
|
||
logoAlt: 'Sascha Bach – Accessible Web Development',
|
||
};
|