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