import { PeaceHand } from 'iconoir-react'; import styled from 'styled-components'; import { GITHUB_LINK, ISSUE_LINK, LICENSE_LINK, PRIVACY_LINK, SUPPORT_LINK, } from '../lib/constants'; import { Logo, LogoContainer, LogoIcon } from './Header'; import { Text13, Text17 } from './Typography'; export interface FooterCategoryProps { category: string; links: { name: string; url: string }[]; } const year = new Date().getFullYear(); function FooterCategory({ category, links }: FooterCategoryProps) { return ( {category} {links.map((link) => ( {link.name} ))} ); } export function Footer() { return ( Parts of this content are ©2020-{year} by individual Iconoir contributors. Content available under a{' '} MIT License . Privacy ); } const Container = styled.div` display: block; margin-top: 110px; padding-top: 30px; margin-top: 100px; padding: 84px 12%; background-color: var(--g7); align-items: center; > :not(:last-child) { margin-right: 50px; } `; const FooterEnd = styled.div` border-top: 1px solid var(--g5); padding-top: 20px; margin-top: 74px; width: 100%; display: flex; justify-content: space-between; `; const FooterCategories = styled.div` width: 100%; margin-top: 54px; display: flex; `; const FooterCategoryContainer = styled.div` width: 28%; margin-right: 20px; `; const FooterCategoryTitle = styled(Text17)` &&& { margin-bottom: 24px; font-weight: 600; display: block; color: var(--g0); } `; const FooterCategoryLinks = styled.div``; const FooterCategoryLink = styled.a` display: block; font-size: 17px; color: var(--g1); width: fit-content; margin-bottom: 12px; text-decoration: none; &:hover { text-decoration: underline; color: var(--g0); } `;