import { ReactNode } from 'react'; export default function FischereiLayout({ children }: { children: ReactNode }) { return <>{children}; }