This repository was archived by the owner on Sep 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +47
-4
lines changed Expand file tree Collapse file tree 3 files changed +47
-4
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <CFlex
3
+ as =" footer"
4
+ flex-dir =" column"
5
+ font-family =" body"
6
+ justify-content =" center"
7
+ align-items =" center"
8
+ :py =" [4, 10, 10]"
9
+ bg =" white"
10
+ shadow =" lg"
11
+ >
12
+ <chakra .p px =" 4" >
13
+ Designed and developed by the Chakra UI Vue core team.
14
+ </chakra .p >
15
+ <chakra .p px =" 4" >
16
+ Special thanks goes to these
17
+ <chakra .a
18
+ href =" https://vue.chakra-ui.com/contributors"
19
+ target =" _blank"
20
+ rel =" noopener noreferrer"
21
+ color =" vue.600"
22
+ >
23
+ contributors
24
+ </chakra .a >
25
+ 💚
26
+ </chakra .p >
27
+ </CFlex >
28
+ </template >
29
+
30
+ <script lang="ts">
31
+ import { defineComponent } from ' vue'
32
+ import { CFlex } from ' @chakra-ui/vue-next'
33
+
34
+ export default defineComponent ({
35
+ name: ' Footer' ,
36
+ components: {
37
+ CFlex ,
38
+ },
39
+ })
40
+ </script >
Original file line number Diff line number Diff line change 3
3
as =" section"
4
4
:flex-dir =" ['column', 'column', 'row']"
5
5
font-family =" body"
6
- :pl =" [0, 10, 12]"
6
+ :ml =" [0, 10, 12]"
7
7
:py =" [4, 10, 10]"
8
8
>
9
9
<chakra .div
15
15
py =" 10"
16
16
:px =" { base: '3', sm: '10' }"
17
17
>
18
- <CBox >
18
+ <CBox m = " 3 " >
19
19
<CFlex align-items =" center" mb =" 5" >
20
20
<CFlex
21
21
justify-content =" center"
33
33
Chakra UI strictly follows WAI-ARIA standards. All components come with
34
34
proper attributes and keyboard interactions out of the box.
35
35
</CBox >
36
- <CBox >
36
+ <CBox m = " 3 " >
37
37
<CFlex align-items =" center" mb =" 5" >
38
38
<CFlex
39
39
justify-content =" center"
51
51
Quickly and easily reference values from your theme throughout your
52
52
entire application, on any component.
53
53
</CBox >
54
- <CBox >
54
+ <CBox m = " 3 " >
55
55
<CFlex align-items =" center" mb =" 5" >
56
56
<CFlex
57
57
justify-content =" center"
Original file line number Diff line number Diff line change 8
8
>
9
9
<Hero />
10
10
<PilersHero />
11
+ <Footer />
11
12
</chakra .main >
12
13
</template >
13
14
@@ -16,13 +17,15 @@ import { defineComponent } from 'vue'
16
17
import Hero from ' ../components/home/Hero.vue'
17
18
import PilersHero from ' ../components/home/PilersHero.vue'
18
19
import Navbar from ' ../components/Navbar.vue'
20
+ import Footer from ' ../components/home/Footer.vue'
19
21
20
22
export default defineComponent ({
21
23
name: ' Index' ,
22
24
components: {
23
25
Hero ,
24
26
PilersHero ,
25
27
Navbar ,
28
+ Footer ,
26
29
},
27
30
})
28
31
</script >
You can’t perform that action at this time.
0 commit comments