import Link from "next/link"; import { Activity, Dumbbell, LayoutDashboard, Settings } from "lucide-react"; const links = [ { href: "/", label: "Panel", icon: LayoutDashboard }, { href: "/running", label: "Bieganie", icon: Activity }, { href: "/strength", label: "Siłownia", icon: Dumbbell }, { href: "/settings", label: "Ustawienia", icon: Settings }, ]; export function Nav() { return (
{/* eslint-disable-next-line @next/next/no-img-element */} Książka{" "} Notowań{" "} Udźwigów i{" "} Rezultatów
); }