import React, { useState } from 'react'; import { ArrowRight } from 'lucide-react'; interface StandardCTAButtonProps { text: string; onClick: () => void; ariaLabel?: string; className?: string; disabled?: boolean; } export function StandardCTAButton({ text, onClick, ariaLabel, className = '', disabled = false }: StandardCTAButtonProps) { const [isHovered, setIsHovered] = useState(false); return ( ); }