import { ArrowRightIcon } from 'lucide-react';
import Image from 'next/image';
import Link from 'next/link';
import { FeatureCardContainer } from '@/components/feature-card';
interface CompareCardProps {
name: string;
logo?: string;
description: string;
url: string;
}
export function CompareCard({
url,
name,
logo,
description,
}: CompareCardProps) {
return (
);
}