'use client' /** * Sidebar table of contents for navigating audit documentation sections. */ import { SECTIONS } from '../constants' interface TableOfContentsProps { activeSection: string onScrollToSection: (sectionId: string) => void } export function TableOfContents({ activeSection, onScrollToSection }: TableOfContentsProps) { return ( ) }