// Dependencies import orderBy from 'lodash.orderby' // Hooks import { useNavigation } from 'site/hooks/use-navigation.mjs' // Components import Link from 'next/link' import { Ribbon } from 'shared/components/ribbon.mjs' import { WordMark } from 'shared/components/wordmark.mjs' import { SocialIcons } from 'shared/components/social/icons.mjs' import { Sponsors, ns as sponsorsNs } from 'shared/components/sponsors/index.mjs' import { FreeSewingIcon } from 'shared/components/icons.mjs' export const ns = ['footer', ...sponsorsNs] const onlyFooterLinks = (tree) => orderBy(tree, ['t'], ['asc']).filter((entry) => entry.f) export const Footer = () => { const { siteNav } = useNavigation({ ignoreControl: true }) return ( ) }