import { useRecoilValue } from "recoil"; import { motion, AnimatePresence, Variants } from "framer-motion"; import { ArrowULeftUp, Coffee, HandHeart } from "@phosphor-icons/react"; import Links from "@/components/Links/Links"; import { ReactComponent as RulerMarker } from "@/assets/ruler-marker.svg"; import { ReactComponent as RulerMarkerSpec } from "@/assets/ruler-marker-spec.svg"; import { useMediaQuery } from "@/hooks"; import { selectionEntryAtom } from "@/state"; import "./Footer.css"; type FooterProps = {}; const variants: Variants = { initial: { y: 188 }, animate: { y: 0 }, exit: { y: 188 }, }; const Footer = (_: FooterProps) => { const isMobile = useMediaQuery("(max-width: 719px)"); const isViewing = !!useRecoilValue(selectionEntryAtom); return ( ); }; export default Footer;