import React from 'react'; import TrackedLink from '@/components/analytics/TrackedLink'; import { getButtonClasses, ButtonOverlay } from '@/components/ui/Button'; export interface SupportCTAProps { title: string; description: string; buttonLabel: string; buttonHref: string; } export const SupportCTA: React.FC = (props) => { const { title, description, buttonLabel, buttonHref } = props; return (

{title}

{description}

{buttonLabel}
); };