import { Link, routes } from '@redwoodjs/router' import Svg from 'src/components/Svg/Svg' import { Popover } from '@headlessui/react' import type { CadPackageType } from 'src/components/CadPackage/CadPackage' const menuOptions: { name: string sub: string ideType: CadPackageType }[] = [ { name: 'OpenSCAD', sub: 'beta', ideType: 'openscad', }, { name: 'CadQuery', sub: 'beta', ideType: 'cadquery' }, // { name: 'JSCAD', sub: 'alpha', ideType: 'jscad' }, // TODO #422, add jscad to db schema when were ready to enable saving of jscad projects ] const NavPlusButton: React.FC = () => { return ( ) } export default NavPlusButton