import type { JSX } from "solid-js"; interface NavSectionProps { title: string; accent?: "cyan" | "green" | "pink" | "purple" | "red" | "yellow"; children: JSX.Element; } export default function NavSection(props: NavSectionProps) { return ( ); }