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