-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDiscordHero.server.vue
63 lines (62 loc) · 1.51 KB
/
DiscordHero.server.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<script setup lang="ts">
import { chakra, CBox, CButton, CFlex, CIcon } from '@chakra-ui/vue-next';
</script>
<template>
<CFlex
as="section"
:flex-dir="['column', 'column', 'column', 'row']"
align="center"
justify="space-between"
font-family="body"
color="white"
bg="discord.accessible"
:h="['auto', 'auto', 'auto', 40]"
:px="[8, 20, 24]"
:mt="[4, 10, 10]"
>
<CFlex
flex-dir="row"
flex="1"
py="10"
:mr="{ base: '0', lg: '10' }"
:w="{ base: '100%', lg: 'auto' }"
>
<CIcon name="discord" size="48px" mr="5" />
<CBox>
<chakra.h2 font-size="md" font-weight="bold" line-height="1.2" mb="1">
Connect with the Chakra community
</chakra.h2>
<chakra.p>
Feel free to ask questions, report issues, and meet new people.
</chakra.p>
</CBox>
</CFlex>
<CFlex
flex-dir="row"
:pt="{ base: '0', lg: '10' }"
pb="10"
h="100%"
:w="{ base: '100%', lg: 'auto' }"
align="center"
>
<CButton
as="a"
text-decoration="none"
aria-label="Join Discord channel"
href="https://discord.gg/sq2Kp6x"
target="_blank"
rel="noopener noreferrer"
size="lg"
color="black"
bg="white"
shadow="lg"
:w="{ base: '100%', lg: 'auto' }"
:_hover="{
backgroundColor: 'whiteAlpha.900'
}"
>
Join the #Chakra Discord!
</CButton>
</CFlex>
</CFlex>
</template>