-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathFooter.server.vue
43 lines (42 loc) · 1017 Bytes
/
Footer.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
<script setup lang="ts">
import { CFlex, CIcon, CLink } from '@chakra-ui/vue-next';
</script>
<template>
<CFlex
as="footer"
justify-content="center"
align-items="center"
:py="[4, 10, 10]"
>
<CLink
aria-label="View GitHub"
target="_blank"
rel="noopener noreferrer"
href="https://github.com/chakra-ui/chakra-ui-vue-next"
:_hover="{ color: 'emerald.500' }"
mx="4"
>
<CIcon name="github" mt="8px" />
</CLink>
<CLink
aria-label="View Twitter"
target="_blank"
rel="noopener noreferrer"
href="https://twitter.com/chakraui_vue"
:_hover="{ color: 'emerald.500' }"
mx="4"
>
<CIcon name="twitter" mt="8px" />
</CLink>
<CLink
aria-label="Join Discord channel"
target="_blank"
rel="noopener noreferrer"
href="https://discord.gg/sq2Kp6x"
:_hover="{ color: 'emerald.500' }"
mx="4"
>
<CIcon name="discord" mt="8px" />
</CLink>
</CFlex>
</template>