diff --git a/client/src/components/organisms/Footer.module.scss b/client/src/components/organisms/Footer.module.scss index 890fd9a..fdc72e7 100644 --- a/client/src/components/organisms/Footer.module.scss +++ b/client/src/components/organisms/Footer.module.scss @@ -57,3 +57,17 @@ } } } + +.stats { + text-align: center; + margin-bottom: $spacer * $line-height; + font-size: $font-size-small; + + p { + margin-bottom: $spacer / 4; + } + + p:last-child { + margin-bottom: 0; + } +} diff --git a/client/src/components/organisms/Footer.tsx b/client/src/components/organisms/Footer.tsx index 02f147b..10f4982 100644 --- a/client/src/components/organisms/Footer.tsx +++ b/client/src/components/organisms/Footer.tsx @@ -1,4 +1,5 @@ import React from 'react' +import { Market } from '../../context' import Content from '../atoms/Content' import styles from './Footer.module.scss' @@ -6,6 +7,22 @@ import meta from '../../data/meta.json' const Footer = () => (