import React from 'react' import { Link, useLocation } from 'react-router-dom' import { Home, Newspaper, Mic, MessageSquare, Briefcase, User, Mail } from 'lucide-react' import './BottomDock.css' export default function BottomDock() { const location = useLocation() const items = [ { label: 'Home', path: '/', icon: }, { label: 'Kniepunkt', path: '/kniepunkt', icon: }, { label: 'Podcast', path: '/podcast', icon: }, { label: 'Speaking', path: '/speaking', icon: }, { label: 'Beratung', path: '/consulting', icon: }, { label: 'Über mich', path: '/ueber-mich', icon: }, { label: 'Kontakt', path: '/kontakt', icon: }, ] return (
) }