import { useNavigate } from 'react-router-dom' import { ChevronRight } from 'lucide-react' const ENTRIES = [ { icon: '⚖️', label: 'Gewicht', sub: 'Tägliche Gewichtseingabe', to: '/weight', color: '#378ADD', }, { icon: '🪄', label: 'Assistent', sub: 'Schritt-für-Schritt Messung (Umfänge & Caliper)', to: '/wizard', color: '#7F77DD', highlight: true, }, { icon: '📏', label: 'Umfänge', sub: 'Hals, Brust, Taille, Bauch, Hüfte, Oberschenkel, Wade, Arm', to: '/circum', color: '#1D9E75', }, { icon: '📐', label: 'Caliper', sub: 'Körperfett per Hautfaltenmessung', to: '/caliper', color: '#D85A30', }, { icon: '🍽️', label: 'Ernährung', sub: 'FDDB CSV importieren', to: '/nutrition', color: '#EF9F27', }, { icon: '🏋️', label: 'Aktivität', sub: 'Training manuell oder Apple Health importieren', to: '/activity', color: '#D4537E', }, { icon: '🌙', label: 'Schlaf', sub: 'Schlafdaten erfassen oder Apple Health importieren', to: '/sleep', color: '#7B68EE', }, { icon: '📖', label: 'Messanleitung', sub: 'Wie und wo genau messen?', to: '/guide', color: '#888780', }, ] export default function CaptureHub() { const nav = useNavigate() return (