import Link from 'next/link' import { FreeSewingLogo } from 'shared/components/logos/freesewing.mjs' import { OsiLogo } from 'shared/components/logos/osi.mjs' import { CCLogo } from 'shared/components/logos/cc.mjs' import { CCByLogo } from 'shared/components/logos/cc-by.mjs' import { Ribbon } from 'shared/components/ribbon.mjs' import { WordMark } from 'shared/components/wordmark.mjs' import { HelpIcon, DiscordIcon, FacebookIcon, GithubIcon, InstagramIcon, RedditIcon, TwitterIcon, } from 'shared/components/icons.mjs' // 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-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', }, } export const Footer = ({ app }) => ( )