({
children,
}: {
children: React.ReactNode;
})
| 19 | } |
| 20 | |
| 21 | export function HomeSplitTextContent({ |
| 22 | children, |
| 23 | }: { |
| 24 | children: React.ReactNode; |
| 25 | }) { |
| 26 | return ( |
| 27 | <div className="justify-self-center lg:justify-self-end max-w-2xl px-20 flex flex-col justify-center"> |
| 28 | {children} |
| 29 | </div> |
| 30 | ); |
| 31 | } |
| 32 | |
| 33 | export function HomeSplitMediaContent({ |
| 34 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected