import { cn } from "@/utils/helpers"; type Props = { children: React.ReactNode; className?: string; }; export function Title({ children, className }: Readonly) { return (

{children}

); }