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