// Sidebar.tsx import React from "react"; import Link from "next/link"; interface Item { name: string | JSX.Element; link: string; } interface Collection { name: string | JSX.Element; items: Item[]; } interface SidebarProps { title: string; collections: Collection[]; } export const Sidebar: React.FC = ({ collections }) => { return ( ); };