'use client' type TabProps = { name: string href: string } export default function Tab({ name, href }: TabProps) { return ( {name} ) }