diff --git a/client/components/Footer/Footer.module.scss b/client/components/Footer/Footer.module.scss index 1fcfd4c..b35737d 100644 --- a/client/components/Footer/Footer.module.scss +++ b/client/components/Footer/Footer.module.scss @@ -72,3 +72,16 @@ align-items: center; justify-content: center; } + +.footerHostingCredits { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + margin-top: 1rem; + margin-bottom: 1rem; +} + +.footerSponsorLogo { + margin-top: 1rem; +} diff --git a/client/components/Footer/index.tsx b/client/components/Footer/index.tsx index 2fd6b96..055b65a 100644 --- a/client/components/Footer/index.tsx +++ b/client/components/Footer/index.tsx @@ -1,6 +1,16 @@ import React from "react"; import styles from "./Footer.module.scss"; +function DigitalOceanLogo(props: { className: string }) { + return ( + + + + ); +} + const Footer = () => { return (