import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; import Image from 'next/image'; const pages = ['Home', 'Menu', 'About', 'Store', 'Contact']; const Footer = () => { return ( Coffee Shop {pages.map((page) => ( {page} ))} cart cart cart ); }; export default Footer;