import Logo from 'shared/components/logos/freesewing.js' import OsiLogo from 'shared/components/logos/osi.js' import CreativeCommonsLogo from 'shared/components/logos/cc.js' import CcByLogo from 'shared/components/logos/cc-by.js' import Ribbon from 'shared/components/ribbon.js' import Link from 'next/link' import { WordMark } from 'shared/components/wordmark.js' import { useTranslation } from 'next-i18next' import { freeSewingConfig } from 'site/freesewing.config.js' import HelpIcon from 'shared/components/icons/help.js' import DiscordIcon from 'shared/components/icons/discord.js' import FacebookIcon from 'shared/components/icons/facebook.js' import GithubIcon from 'shared/components/icons/github.js' import InstagramIcon from 'shared/components/icons/instagram.js' import RedditIcon from 'shared/components/icons/reddit.js' import TwitterIcon from 'shared/components/icons/twitter.js' const icon = { className: 'w-8 lg:w-12 h-8 lg:h-12' } const social = { Discord: { icon: , href: 'https://discord.freesewing.org/', }, Instagram: { icon: , href: 'https://instagram.com/freesewing_org', }, Facebook: { icon: , href: 'https://www.facebook.com/groups/627769821272714/', }, Github: { icon: , href: 'https://github.com/freesewing', }, Reddit: { icon: , href: 'https://www.reddit.com/r/freesewing/', }, Twitter: { icon: , href: 'https://twitter.com/freesewing_org', }, } /* * This named export lets people know * what translation namespaces this component relies on */ export const namespaces = ['footer'] /* * Named exports are better than default exports */ export const Footer = ({ app }) => { const { t } = useTranslation(namespaces) return ( ) }