diff --git a/src/js/components/Footer.tsx b/src/js/components/Footer.tsx index f0e09b8b..cef3d4a0 100644 --- a/src/js/components/Footer.tsx +++ b/src/js/components/Footer.tsx @@ -6,6 +6,7 @@ import { PlusCircleIcon as PlusCircleIconFull, } from '@heroicons/react/24/solid'; import { useEffect, useState } from 'preact/hooks'; +import { Link } from 'preact-router'; import Icons from '../Icons'; import localState from '../LocalState'; @@ -40,14 +41,14 @@ const Footer = () => { const isActive = new RegExp(`^${href}(/|$)`).test(activeRoute); return ( - + - + ); };