import React from "react"; export const SplitCard = ({ title, description, leftHref, rightHref, leftLabel = "Python", rightLabel = "TypeScript", leftLogo = "/images/python-logo.svg", rightLogo = "/images/typescript-logo.svg", className, }) => { return (
{title}
{leftLabel} {rightLabel}

{title}

{description}

{leftLabel} {leftLabel} {rightLabel} {rightLabel}
); };