"use client"; import { ReactNode } from "react"; import { cn } from "../../utils"; type EntityHeroLayoutProps = { children: ReactNode; className?: string; }; export function EntityHeroLayout({ children, className }: EntityHeroLayoutProps) { return
{children}
; }