import React from "react";
export type HomeSplitSectionProps = {
className?: string;
children: React.ReactNode;
};
export function HomeSplitSection({
className,
children,
}: HomeSplitSectionProps) {
return (
{children}
);
}
export function HomeSplitTextContent({
children,
}: {
children: React.ReactNode;
}) {
return (
{children}
);
}
export function HomeSplitMediaContent({
children,
}: {
children: React.ReactNode;
}) {
return (
{children}
);
}