import type { ReactNode } from "react"; import React from "react"; import GlowWrapper from "./GlowWrapper"; import SparkleIcon from "../../public/icons/sparkle-default-regular.svg"; type HeroCardProps = { title: string; subtitle: string; leftIcon: ReactNode; }; const HeroCard: React.FC = ({ title, subtitle, leftIcon }) => { return (
{leftIcon}

{title}

{subtitle}

{ window.open("https://6h6bquxo5g1.typeform.com/to/qscfsOf1", "_blank"); }} >
); }; export default HeroCard;