'use client' import { usePathname } from 'next/navigation' import Link from 'next/link' import type { ReactNode, ReactElement } from 'react' export type TabProps = { name: string href: string } export function Tabs({ children }: { children: ReactNode }) { const pathname = usePathname() const tabs = Array.isArray(children) ? children : [children] return ( ) } // Dummy-Komponente nur zur statischen Verwendung Tabs.Tab = function Tab(_props: TabProps) { return null }