import { Box, Container, Divider, HStack, Link, SimpleGrid, Stack, Text } from '@chakra-ui/react' import { Link as RouterLink } from 'react-router-dom' export function Footer() { return ( Omnex Plateforme de gestion de commandes & livraison, déployable en démo isolée en un clic. Présentation Tarifs Créer un compte Documentation Statut Sécurité © {new Date().getFullYear()} Omnex. Tous droits réservés. Mentions légales Confidentialité ) } function FooterCol({ title, children }: { title: string; children: React.ReactNode }) { return ( {title} {children} ) } function FooterLink({ to, children }: { to: string; children: React.ReactNode }) { return ( {children} ) } function FooterExt({ href, children }: { href: string; children: React.ReactNode }) { return ( {children} ) }