import { Link } from 'react-router-dom' import { useSite } from '../contexts/SiteContext.jsx' import Slot from '../modules/Slot.jsx' const FOOTER_SLOT = 'site.footer.status' // Handed to the extension rather than left for it to guess. A module rendering // its own link in this row should look like the row, and the alternative is // every module restating core's colours and then drifting from them the next // time this footer is themed. const LINK_STYLE = { color: 'var(--accent)', textDecoration: 'none' } export default function SiteFooter() { const { contactEmail, siteTitle } = useSite() return ( ) }