'use client' import { Button } from '@/components/ui/button' import { ArrowRight } from 'lucide-react' interface CustomSolutionCTAProps { title?: string description: string buttonText?: string buttonHref?: string className?: string } export function CustomSolutionCTA({ title = "Need Something Custom?", description, buttonText = "Contact Us", buttonHref, className = "" }: CustomSolutionCTAProps) { const handleClick = () => { if (buttonHref) { window.location.href = buttonHref } } return (
{description}