import { type Service } from '@/types'; import { ServiceCard } from './ServiceCard'; import { SectionHeading } from '@/components/common/SectionHeading'; import { Container } from '@/components/common/Container'; const services: Service[] = [ { title: 'Boîte mail', description: 'Service de messagerie électronique sécurisé et respectueux de votre vie privée', colorTitle: 'white', bgTitle: 'accent', bgColor: 'secondary', link: '#', illustration: '../../img/utils/lrl-logo.svg' }, { title: 'Stockage Cloud', description: 'Stockage en ligne et collaboration avec vos données hébergées localement', colorTitle: 'black', bgTitle: 'white', bgColor: 'primary', link: '#', illustration: '../../img/utils/lrl-logo.svg' }, { title: 'Hébergement de site', description: "Solutions d'hébergement web éthiques et performantes", colorTitle: 'black', bgTitle: 'primary', bgColor: 'accent', link: '#', illustration: '../../img/utils/lrl-logo.svg' }, { title: 'Email Marketing', description: "Gérez vos communications de groupe efficacement", colorTitle: 'black', bgTitle: 'secondary', bgColor: 'gray', link: '#', illustration: '../../img/utils/lrl-logo.svg' }, { title: 'Partage de fichiers', description: 'Partager facielement vos fichiers en toute sécurité', colorTitle: 'black', bgTitle: 'white', bgColor: 'primary', link: '#', illustration: '../../img/utils/lrl-logo.svg' }, { title: 'Outil de Sondage', description: 'Créez et partagez des sondages en ligne en toute confidentialité', colorTitle: 'black', bgTitle: 'primary', bgColor: 'accent', link: '#', illustration: '../../img/utils/lrl-logo.svg' }, ]; export function ServicesSection() { return (
{services.map((service) => ( ))}
); }