import Link from 'next/link'; import footerData from './footer.json'; const FooterBottom = () => { const { bottom } = footerData; return (

{bottom.copyright.text} {bottom.copyright.brand} {bottom.copyright.rights}

    {bottom.menuLinks.map((item, index) => (
  • {item.label}
  • ))}
); }; export default FooterBottom;