import { ArrowRight } from "lucide-react"; const Features: React.FC< React.PropsWithChildren<{ title: string; description: string; cta: string; }> > = ({ title, description, cta, children }) => { return (

{title}

{description}

{cta}
{children}
); }; export default Features; export const FeatureItem: React.FC< React.PropsWithChildren<{ title: string; image: string; position: "left" | "right"; }> > = ({ title, children, image, position }) => { const _image = () => (
{title}
); const _content = () => (

{title}

{children}
); return (
{position === "left" ? ( <> <_image /> <_content /> ) : ( <> <_content /> <_image /> )}
); };