'use client'; import s from './styles.module.scss'; import { Icons } from '@shared/ui'; import { phoneBeautify } from '@shared/lib/phoneBeautify/phoneBeautify'; import { CONTACTS } from '@shared/const/contacts'; import { useModal } from '@core/providers/modal-provider'; import { ConsultationModal } from '@/widgets'; function MobileCallback() { const modal = useModal(); const openModal = () => modal.showModal(); const handlePhoneClick = () => { window.open(`tel:${CONTACTS.PHONE}`, '_self'); }; return (
); } export { MobileCallback };