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 bg-black text-white flex-wrap', className ) return ( ) } export default Footer