import { useTranslation } from 'react-i18next' import { Separator } from '@/components/ui/separator' import { getGatewayFeatures } from '../constants' interface GatewayCardProps { logo: string systemName: string } /** * Central gateway card with features grid */ export function GatewayCard({ logo, systemName }: GatewayCardProps) { const { t } = useTranslation() const features = getGatewayFeatures(t) return (