File tree 2 files changed +52
-23
lines changed
2 files changed +52
-23
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<v-footer
3
- color = " primary lighten-1 "
3
+ dark
4
4
padless
5
5
>
6
- <v-row
7
- justify =" center"
8
- no-gutters
6
+ <v-card
7
+ flat
8
+ tile
9
+ class =" indigo lighten-1 white--text text-center"
10
+ width =" 100%"
9
11
>
10
- <v-btn
11
- v-for = " link in links "
12
- :key = " link"
13
- color = " white "
14
- text
15
- rounded
16
- class = " my-2 "
17
- >
18
- {{ link }}
19
- < /v-btn >
20
- < v-col
21
- class = " primary lighten-2 py-4 text-center white--text "
22
- cols = " 12 "
23
- color = " secondary "
24
- >
25
- {{ new Date().getFullYear() }} — <strong >Coderplex </strong >
26
- </v-col >
27
- </v-row >
12
+ <v-card-text >
13
+ < v-btn
14
+ v-for = " {icon, link} in icons "
15
+ :key = " icon "
16
+ class = " mx-4 white-- text"
17
+ :href = " link "
18
+ icon
19
+ target = " _blank "
20
+ >
21
+ < v-icon size = " 24px " >{{ icon }}< /v-icon >
22
+ </ v-btn >
23
+ </ v-card- text>
24
+ < v-divider ></ v-divider >
25
+
26
+ < v-card-text class = " white--text " >
27
+ {{ new Date().getFullYear() }} — <strong >OpenRank </strong >
28
+ </v-card-text >
29
+ </v-card >
28
30
</v-footer >
29
31
</template >
30
32
@@ -40,6 +42,33 @@ export default {
40
42
' Blog' ,
41
43
' Contact Us' ,
42
44
],
45
+ icons: [
46
+ {
47
+ icon: ' mdi-youtube' ,
48
+ link: ' https://www.youtube.com/channel/UCTkguToherUvVNnzMFINk-w' ,
49
+ },
50
+ {
51
+ icon: ' mdi-facebook' ,
52
+ link: ' https://www.facebook.com/coderplex' ,
53
+ },
54
+ {
55
+ icon: ' mdi-github-face' ,
56
+ link: ' https://github.com/coderplex' ,
57
+ },
58
+ {
59
+ icon: ' mdi-discord' ,
60
+ link: ' https://discord.gg/qEA8vxd' ,
61
+ },
62
+ {
63
+ icon: ' mdi-twitter' ,
64
+ link: ' https://www.twitter.com/coderplex/' ,
65
+ },
66
+ {
67
+ icon: ' mdi-instagram' ,
68
+ link: ' https://www.instagram.com/coderplex/' ,
69
+ },
70
+ ],
71
+
43
72
}),
44
73
};
45
74
</script >
Original file line number Diff line number Diff line change 1
1
<template >
2
- <v-app-bar app flat dark color =" primary " >
2
+ <v-app-bar app flat dark color =" indigo lighten-1 " >
3
3
<v-toolbar-title class =" headline text-uppercase" >
4
4
<span @click =" $router.push('/')" >Open Rank</span >
5
5
</v-toolbar-title >
You can’t perform that action at this time.
0 commit comments