"use client"; type Props = { section: string; setSection: (s: string) => void; }; const items = ["profile", "projects"]; export default function Nav({ section, setSection }: Props) { return ( ); }