import { appConstants } from '@/assets/constants'; import images from '@/assets/images/images'; import { t } from '@/locales/translates'; import Image from 'next/image'; import Link from 'next/link'; export default function FooterInfo({ withLogo, className, }: { withLogo?: boolean; className?: string; }) { return (
{withLogo && ( logo )}

{t('footer_slogan') as string}

{appConstants.socials.map((social) => ( {/* {social.title} */} {social.title} ))}
); }