diff --git a/client/src/components/SiteFooter.tsx b/client/src/components/SiteFooter.tsx index 9b3d868..bb18b3e 100644 --- a/client/src/components/SiteFooter.tsx +++ b/client/src/components/SiteFooter.tsx @@ -1,8 +1,17 @@ import React from "react"; -export const SiteFooter = (): JSX.Element => { +type SiteFooterProps = { + fullBleedOnMobile?: boolean; +}; + +export const SiteFooter = ({ + fullBleedOnMobile = false, +}: SiteFooterProps): JSX.Element => { + const outerClass = fullBleedOnMobile + ? "mt-0 w-full max-w-[1200px] mx-auto px-0 sm:px-8" + : "mt-0 w-full max-w-[1200px] mx-auto px-4 sm:px-8"; return ( -