import React, { useState, useEffect, useRef } from 'react'; // Custom hook for observing elements to trigger animations const useOnScreen = (options) => { const ref = useRef(); const [isVisible, setIsVisible] = useState(false); useEffect(() => { cons
Last seen: July 1st at 7:25pm — Visit site