import { clx } from '@/helpers/utils' import { type FC, type ReactNode } from 'react' type HomeSectionProps = { title?: string children: ReactNode className?: string contentClassName?: string } const HomeSection: FC = ({ title, children, className, contentClassName, }) => { return (
{title ? (

{title}

) : null}
{children}
) } export default HomeSection