import { Button, Box, Container, Heading, Flex, Grid, Text } from 'theme-ui' import styled from '@emotion/styled' import usePrefersMotion from '../lib/use-prefers-motion' import useHasMounted from '../lib/use-has-mounted' import { formatted } from '../lib/members' import Link from 'next/link' let Highlight = styled(Text)` color: inherit; border-radius: 1em 0 1em 0; background: linear-gradient( -100deg, rgba(250, 247, 133, 0.33), rgba(250, 247, 133, 0.66) 95%, rgba(250, 247, 133, 0.1) ); ` Highlight = Highlight.withComponent('mark') const Content = () => ( ~ The Hack Club Slack ~ Come for the skills,
stay for the people.
Communication and planning for our open source projects happen in the Slack. Coding is often seen as an isolating activity. Plenty of groups exist for kids who are interested in sports, theater, or chess, but the stereotype of a programmer is a person who sits alone in a dark room.{' '} It doesn't have to be this way—in the Hack Club Slack (Discord-style online groupchat), you'll find a group of {formatted}+{' '} fabulous people to talk to, active at all hours.
) const Cover = () => ( t.util.gx('cyan', 'purple'), opacity: 0.825, zIndex: 1 }} /> ) const Static = ({ img = 'https://cloud-r4rrjh2z8-hack-club-bot.vercel.app/02020-07-25_a1tcva4ch6mmr6j2cfmcb4e9ync3yhar.png' // img="https://cloud-r4rrjh2z8-hack-club-bot.vercel.app/12020-07-25_hn13qhejqrzu4n1jy9yacxxgrgp3wf5u.png" }) => ( ) const Slack = () => { const hasMounted = useHasMounted() const prefersMotion = usePrefersMotion() if (hasMounted && prefersMotion) { return ( ) } else { return } } export default Slack