import { Container } from '../components/Container' import { Wordmark } from '../components/Wordmark' import { fmt, useI18n } from '../i18n' import { DESKTOP_RELEASE_HUB_URL } from '../release' export function Footer() { const { t } = useI18n() const links = [ { href: './privacy/', label: t.footer.privacy }, { href: './terms/', label: t.footer.terms }, { href: './delete-account/', label: t.footer.deleteAccount }, ] return ( ) }