mirror of
https://github.com/System-End/site.git
synced 2026-04-19 23:22:49 +00:00
141 lines
3.4 KiB
JavaScript
141 lines
3.4 KiB
JavaScript
import { Button, Box, Container, Heading, Flex, Grid, Text } from 'theme-ui'
|
|
import SlideUp from '../slide-up'
|
|
import Announcement from '../announcement'
|
|
import Icon from '../icon'
|
|
import Stat from '../stat'
|
|
import JoinForm from './join-form'
|
|
import usePrefersMotion from '../../lib/use-prefers-motion'
|
|
import useHasMounted from '../../lib/use-has-mounted'
|
|
|
|
const Content = () => (
|
|
<Grid
|
|
columns={[null, '2fr 3fr']}
|
|
gap={4}
|
|
pt={[5, 6]}
|
|
pb={[4, 5]}
|
|
variant="layout.container"
|
|
>
|
|
<Box
|
|
sx={{
|
|
position: 'relative',
|
|
zIndex: 1,
|
|
textShadow: 'text',
|
|
textAlign: ['center', 'left']
|
|
}}
|
|
>
|
|
<Text as="p" variant="eyebrow" sx={{ color: 'white', opacity: 0.875 }}>
|
|
Hack Club
|
|
</Text>
|
|
<Heading
|
|
as="h1"
|
|
variant="title"
|
|
sx={{
|
|
color: 'white',
|
|
fontSize: [7, 8, 9],
|
|
lineHeight: 'limit',
|
|
mb: [3, 4]
|
|
}}
|
|
>
|
|
Slack
|
|
</Heading>
|
|
<Button
|
|
as="a"
|
|
href="https://hackclub.slack.com"
|
|
variant="outline"
|
|
color="smoke"
|
|
>
|
|
<Icon glyph="door-enter" size={24} />
|
|
Sign back in
|
|
</Button>
|
|
</Box>
|
|
<SlideUp>
|
|
<JoinForm sx={{ variant: 'cards.translucent' }} />
|
|
</SlideUp>
|
|
</Grid>
|
|
)
|
|
|
|
const Cover = () => (
|
|
<Box
|
|
sx={{
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
backgroundImage: t => t.util.gx('cyan', 'purple'),
|
|
opacity: 0.625,
|
|
zIndex: 0
|
|
}}
|
|
/>
|
|
)
|
|
|
|
const Static = ({
|
|
img = 'https://cloud-nykwtt0z7.vercel.app/2020-07-25_a1tcva4ch6mmr6j2cfmcb4e9ync3yhar.png'
|
|
// img="https://cloud-re5hkabx0.vercel.app/2020-07-25_hn13qhejqrzu4n1jy9yacxxgrgp3wf5u.png"
|
|
}) => (
|
|
<Box
|
|
as="section"
|
|
id="slack"
|
|
sx={{
|
|
position: 'relative',
|
|
overflow: 'hidden',
|
|
backgroundImage: `url(${img})`,
|
|
backgroundSize: 'cover'
|
|
}}
|
|
>
|
|
<Cover />
|
|
<Content />
|
|
</Box>
|
|
)
|
|
|
|
const Slack = () => {
|
|
const hasMounted = useHasMounted()
|
|
const prefersMotion = usePrefersMotion()
|
|
if (hasMounted && prefersMotion) {
|
|
return (
|
|
<Box
|
|
as="section"
|
|
id="slack"
|
|
sx={{ overflow: 'hidden', position: 'relative' }}
|
|
>
|
|
<Box
|
|
as="video"
|
|
autoPlay
|
|
muted
|
|
loop
|
|
playsInline
|
|
poster="https://cloud-nykwtt0z7.vercel.app/2020-07-25_a1tcva4ch6mmr6j2cfmcb4e9ync3yhar.png"
|
|
duration={2000}
|
|
sx={{
|
|
position: 'absolute',
|
|
bottom: 0,
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
height: '100%',
|
|
zIndex: -1
|
|
}}
|
|
>
|
|
<source
|
|
src="https://cdn.glitch.com/2d637c98-ed35-417a-bf89-cecc165d7398%2Foutput-no-duplicate-frames.hecv.mp4?v=1590780967658"
|
|
type="video/mp4; codecs=hevc"
|
|
/>
|
|
<source
|
|
src="https://cdn.glitch.com/2d637c98-ed35-417a-bf89-cecc165d7398%2Foutput-no-duplicate-frames.webm?v=1590781698834"
|
|
type="video/webm; codecs=vp9,opus"
|
|
/>
|
|
<source
|
|
src="https://cdn.glitch.com/2d637c98-ed35-417a-bf89-cecc165d7398%2Foutput-no-duplicate-frames.mov?v=1590781491717"
|
|
type="video/quicktime"
|
|
/>
|
|
</Box>
|
|
<Cover />
|
|
<Content />
|
|
</Box>
|
|
)
|
|
} else {
|
|
return <Static />
|
|
}
|
|
}
|
|
|
|
export default Slack
|