import type { Section } from "../data/portfolio" import { useSystemTheme } from "../hooks/useSystemTheme" interface SectionNavProps { sections: readonly Section[] activeSection: string } export function SectionNav({ sections, activeSection }: SectionNavProps) { const scrollToSection = (section: string) => { document.getElementById(section)?.scrollIntoView({ behavior: "smooth" }) } return ( ) }