export interface NavLink { id: string; label: string; } export const navLinks: NavLink[] = [ { id: 'services', label: 'Leistungen' }, { id: 'about', label: 'Über uns' }, { id: 'process', label: 'Ablauf' }, { id: 'whyus', label: 'Warum wir' }, { id: 'referral', label: 'Empfehlung' }, { id: 'faq', label: 'FAQ' }, ];