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 { useTranslation } from 'next-i18next' import PinkedRibbon from 'shared/components/pinked-ribbon.js' import Link from 'next/link' 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' // Classes const link = "text-secondary font-bold hover:pointer hover:underline px-1" const accent = "text-accent font-bold text-lg px-1 block sm:inline" const freesewing = "px-1 text-lg font-bold block sm:inline" // Keep these translations in the component because they're only used here const translations = { cc: Content on FreeSewing.org is available under a Creative Commons license , mit: The FreeSewing source code is available on Github under the MIT license , sponsors: <> FreeSewing is sponsored by these awesome companies >, } const icon = { className: "w-20 h-20" } 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' } } const Footer = ({ app, full=false }) => { const { t } = useTranslation(['common', 'patrons']) return ( ) } export default Footer