-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPilersHero.server.vue
76 lines (75 loc) · 2.28 KB
/
PilersHero.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
64
65
66
67
68
69
70
71
72
73
74
75
76
<script setup lang="ts">
import { chakra } from '@chakra-ui/vue-next';
</script>
<template>
<CFlex
as="section"
:flex-dir="['column', 'column', 'row']"
font-family="body"
:py="[4, 10, 10]"
>
<CSimpleGrid
:template-columns="['auto', 'auto', 'repeat(3, 1fr)']"
gap="1.5rem"
shadow="lg"
py="10"
:px="{ base: '3', sm: '10' }"
list-style-type="none"
>
<chakra.li my="3" :mx="{ base: '0', sm: '3' }">
<CFlex align-items="center" mb="5">
<CFlex
justify-content="center"
align-items="center"
mr="5"
bg="emerald.200"
w="50px"
h="50px"
rounded="full"
>
<CIcon display="block" w="5" h="5" name="accessibilityAlt" />
</CFlex>
<chakra.h2 font-size="xl"> Accessible </chakra.h2>
</CFlex>
Chakra UI strictly follows WAI-ARIA standards. All components come with
proper attributes and keyboard interactions out of the box.
</chakra.li>
<chakra.li my="3" :mx="{ base: '0', sm: '3' }">
<CFlex align-items="center" mb="5">
<CFlex
justify-content="center"
align-items="center"
mr="5"
bg="emerald.200"
w="50px"
h="50px"
rounded="full"
>
<CIcon display="block" w="5" h="5" name="colorPalette" />
</CFlex>
<chakra.h2 font-size="xl"> Themeable </chakra.h2>
</CFlex>
Quickly and easily reference values from your theme throughout your
entire application, on any component.
</chakra.li>
<chakra.li m="3" :mx="{ base: '0', sm: '3' }">
<CFlex align-items="center" mb="5">
<CFlex
justify-content="center"
align-items="center"
mr="5"
bg="emerald.200"
w="50px"
h="50px"
rounded="full"
>
<CIcon display="block" w="5" h="5" name="cube" />
</CFlex>
<chakra.h2 font-size="xl"> Composable </chakra.h2>
</CFlex>
Components were built with composition in mind. You can leverage any
component to create new things.
</chakra.li>
</CSimpleGrid>
</CFlex>
</template>