diff --git a/components/core/Footer/Footer.tsx b/components/core/Footer/Footer.tsx index b6cccdd15..fe5d0b056 100644 --- a/components/core/Footer/Footer.tsx +++ b/components/core/Footer/Footer.tsx @@ -10,55 +10,57 @@ interface Props { const Footer: FC = ({ className }) => { const rootClassName = cn( - 'flex flex-col p-6 md:py-12 md:flex-row bg-black text-white flex-wrap', + 'flex flex-col p-6 md:py-12 md:flex-row flex-wrap max-w-screen-xl m-auto', className ) return ( - + ) }