import Link from 'next/link' import Container from './Container' import Wave from './Wave' const Footer = ({ color }:FooterProps): JSX.Element => { return (
) } interface FooterProps { color?: string } export default Footer