'use client'; import React from 'react'; import TrackedLink from '@/components/analytics/TrackedLink'; import { getButtonClasses, ButtonOverlay } from '@/components/ui/Button'; import { m } from 'framer-motion'; export interface SupportCTAProps { title: string; description: string; buttonLabel: string; buttonHref: string; } const containerVariants = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.8, ease: [0.16, 1, 0.3, 1] as const, staggerChildren: 0.15, delayChildren: 0.1, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: [0.16, 1, 0.3, 1] as const }, }, }; export const SupportCTA: React.FC = (props) => { const { title, description, buttonLabel, buttonHref } = props; return (
{title} {description} {buttonLabel}
); };