fix(sidebar): add mobile sidebar

This commit is contained in:
2025-12-03 15:30:46 +03:00
parent 18ebfa734a
commit 01de6f6e75
22 changed files with 613 additions and 109 deletions

View File

@@ -0,0 +1,19 @@
import s from './styles.module.scss';
import { Icons } from '@shared/ui';
function MobileCallback() {
return (
<div className={s.Root}>
<button className={s.Button}>
<Icons.MobileContact className={s.Icon} />
<span className={s.Text}>Записаться</span>
</button>
<button className={s.Button}>
<Icons.MobilePhone className={s.Icon} />
<span className={s.Text}>+7 (900) 241-34-34</span>
</button>
</div>
);
}
export { MobileCallback };