Files
rhein-sw-website/constant/Constant.ts
Thatsaphorn Atchariyaphap 6535bf37ec Added "Services" page & refactor layout structure
- 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.
2025-04-08 22:57:58 +02:00

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',
}
];