"use client" import Link from "next/link" import type { ServiceConfig } from "@/config/services" import { ArrowRight } from "lucide-react" interface ServiceCardProps { service: ServiceConfig } export default function ServiceCard({ service }: ServiceCardProps) { const IconComponent = service.icon return (
{service.description}
{/* Enhanced CTA with Glass Effect */}