({
className,
children,
}: HomeSplitSectionProps)
| 6 | }; |
| 7 | |
| 8 | export function HomeSplitSection({ |
| 9 | className, |
| 10 | children, |
| 11 | }: HomeSplitSectionProps) { |
| 12 | return ( |
| 13 | <div |
| 14 | className={`grid lg:grid-cols-2 items-center justify-items-center py-12 ${className}`} |
| 15 | > |
| 16 | {children} |
| 17 | </div> |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | export function HomeSplitTextContent({ |
| 22 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected