import { useMemo } from 'react'; import cx from 'clsx'; import { useApi } from '@gear-js/react-hooks'; import DotSVG from '@/shared/assets/images/logos/dotLogo.svg?react'; import { Socials } from './socials/Socials'; import styles from './Footer.module.scss'; const Footer = () => { const { api, isApiReady } = useApi(); const year = useMemo(() => new Date().getFullYear(), []); return ( ); }; export { Footer };