import { Anchor, HStack, VStack } from "@hope-ui/solid" import { Link } from "@solidjs/router" import { AnchorWithBase } from "~/components" import { useT } from "~/hooks" import { me } from "~/store" import { UserMethods } from "~/types" export const Footer = () => { const t = useT() return ( {t("home.footer.powered_by")} | {t(UserMethods.is_guest(me()) ? "login.login" : "home.footer.manage")} ) }