import { Heart, Info, Upload } from "lucide-react"; import { ThemeToggle } from "./ThemeToggle"; import { Button } from "@/components/ui/button"; interface NavigationProps { activeTab: "upload" | "about"; setActiveTab: (tab: "upload" | "about") => void; } export const Navigation = ({ activeTab, setActiveTab }: NavigationProps) => { return (

Cardexa

Cardiac Analysis Platform

); };