import Link from 'next/link'; import styles from './FooterNav.module.scss'; import { footerNav } from '@config/nav'; const FooterNav = () => { const navItems = footerNav.map((item) => { return (
  • {item.name}
  • ); }); return (
    ); }; export default FooterNav;