import React from "react"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "@/src/components/ui/select"; import { cn } from "@/src/utils/tailwind"; import { useRouter } from "next/router"; interface Project { id: string; name: string; role: string; } interface ProjectNavigationProps { currentProjectId: string; projects: Project[]; } export const ProjectNavigation: React.FC = ({ currentProjectId, projects, }) => { const router = useRouter(); return ( ); };