import { Link } from 'react-router-dom' import instagram from '@shared/assets/instagram.svg' import telegram from '@shared/assets/telegram.svg' import whatsapp from '@shared/assets/whatsapp.svg' import { ROUTES } from '@shared/config/routes' import styles from './Footer.module.css' const SOCIALS = [ { href: '#', icon: telegram, label: 'Telegram' }, { href: '#', icon: whatsapp, label: 'WhatsApp' }, { href: '#', icon: instagram, label: 'Instagram' }, ] export function Footer() { return ( ) }