import { Link, NavLink } from 'react-router-dom'; import { LogoWithTextIcon } from '../icons/LogoWithTextIcon'; export function Footer() { return ( ); } function Contact({ text, className = '', type, }: { className?: string; text: string; type: 'email' | 'phone'; }) { const formatedTel = text.replace(/\s/g, ''); return (