import React from 'react'; // Define interface directly in the component file interface Service { name: string; url: string; image: string; description: string; features: string[]; icon: string; } interface PopupProps { service: Service; onClose: () => void; } export const Popup: React.FC = ({ service, onClose }) => (
{/* Header */}
{service.icon}

{service.name}

Service d'hébergement professionnel
Haute disponibilité Open Source Communautaire
{/* Content - Layout simplifié */}
{/* Description */}

📋 Description détaillée

{service.description}

99.9% Uptime
Disponibilité garantie
🔒
Sécurisé
SSL & Backups
{/* Fonctionnalités en colonnes */}

Fonctionnalités principales

{service.features.map((feature, index) => (
{feature}
))}
{/* Call to action simplifié */}
🚀 Accéder à {service.name}

Besoin d'aide ? Rejoignez notre Discord pour obtenir du support

{/* Decorative elements - améliorés pour desktop */}
);