import classNames from 'classnames'; import { useContext } from 'react'; import { useDispatch } from 'react-redux'; import { ScreenContext } from '../contexts/screen'; import { expandSideMenu } from '../state/navigation'; export function HomeHeroBubble() { const { isMobile, isTablet, isDesktop, isHuge } = useContext(ScreenContext); const dispatch = useDispatch(); return (
dispatch(expandSideMenu())} className={classNames( 'absolute z-40 px-4 tablet:px-6 duration-300 w-full h-full tablet:w-auto tablet:h-auto flex justify-center items-center tablet:flex-none', !isDesktop && 'cursor-pointer', )} >

OXEN

Welcome to Oxen.
We know you have questions;
here are the answers.

); }