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 (
{/* Top gradient border effect */} {/* Ambient glow behind card */}
{/* Gateway Header */}
{systemName}

{systemName}

{/* Features Grid */}
{features.map((feature, i) => (
{feature}
))}
) }