- Introduced a new Services component with basic setup. - Updated layout files to ensure consistent global styling references. - Enhanced Navbar with pathname detection for active link styling. - Fixed navigation link URL for "Leistungen" in constants.
17 lines
253 B
TypeScript
17 lines
253 B
TypeScript
export const navLinks = [
|
|
{
|
|
id: 1,
|
|
url: '/',
|
|
label: 'Home',
|
|
},
|
|
{
|
|
id: 2,
|
|
url: '#',
|
|
label: 'Über uns',
|
|
},
|
|
{
|
|
id: 3,
|
|
url: '/services',
|
|
label: 'Leistungen',
|
|
}
|
|
]; |