diff --git a/components/core/Footer/Footer.module.css b/components/core/Footer/Footer.module.css deleted file mode 100644 index 573fa35bc..000000000 --- a/components/core/Footer/Footer.module.css +++ /dev/null @@ -1,7 +0,0 @@ -.root { - @apply p-0 bg-black text-white; -} - -.container { - @apply flex justify-between items-center flex-row px-4 py-5; -} diff --git a/components/core/Footer/Footer.tsx b/components/core/Footer/Footer.tsx index 536dc3006..1a5fe70cc 100644 --- a/components/core/Footer/Footer.tsx +++ b/components/core/Footer/Footer.tsx @@ -1,7 +1,7 @@ import cn from 'classnames' import { FC } from 'react' -import s from './Footer.module.css' -import { Container, Logo } from '@components/ui' +import { Logo } from '@components/ui' +import Link from 'next/link' interface Props { className?: string @@ -9,55 +9,49 @@ interface Props { } const Footer: FC = ({ className }) => { - const rootClassName = cn(s.root, className) + const rootClassName = cn( + 'flex flex-col p-6 md:py-12 md:flex-row bg-black text-white flex-wrap', + className + ) return ( ) }