"use client"; import Link from "next/link"; type Props = { section: string; }; const items = ["profile", "project"]; export default function Nav({ section }: Props) { let subtitle = null; if (section == "project"){ } return ( ); }