import Head from 'next/head' import useIsClientSide from '~/hooks/useIsClientSide' export default function Contact() { const clientSide = useIsClientSide(); return ( <>
We love hearing from our customers (or potential customers), so feel free to reach out to us.
You can send us an email at {clientSide ? 'admin@societyofsocks.us' : 'admin at society of socks dot us'} and we try to answer that relatively quickly. Please be patient during holidays, as we sometimes get stolen away by parents and other family members.
> ) }