import cn from 'classnames' import { FC } from 'react' import { Logo } from '@components/ui' import Link from 'next/link' interface Props { className?: string children?: any } const Footer: FC = ({ className }) => { const rootClassName = cn( 'flex flex-col p-6 md:py-12 md:flex-row flex-wrap max-w-screen-xl m-auto', className ) return (
) } export default Footer