Skip to content

Commit 651d051

Browse files
committed
Update footer links
1 parent e706c5f commit 651d051

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

src/components/shared/AppFooter.vue

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,41 @@
11
<script>
22
import feather from 'feather-icons';
33
import FooterCopyright from './FooterCopyright.vue';
4+
45
export default {
56
components: { FooterCopyright },
67
data() {
78
return {
89
socials: [
910
{
1011
id: 1,
12+
name: 'Website',
13+
icon: 'globe',
14+
url: 'https://www.stoman.me/',
15+
},
16+
{
17+
id: 2,
1118
name: 'GitHub',
1219
icon: 'github',
1320
url: 'https://github.com/realstoman',
1421
},
1522
{
16-
id: 2,
23+
id: 3,
1724
name: 'Twitter',
1825
icon: 'twitter',
1926
url: 'https://twitter.com/realstoman',
2027
},
2128
{
22-
id: 3,
23-
name: 'Medium',
24-
icon: 'book',
25-
url: 'https://stoman.medium.com',
29+
id: 4,
30+
name: 'LinkedIn',
31+
icon: 'linkedin',
32+
url: 'https://www.linkedin.com/in/realstoman',
2633
},
2734
{
28-
id: 4,
29-
name: 'Instagram',
30-
icon: 'instagram',
31-
url: 'https://instagram.com/realstoman',
35+
id: 5,
36+
name: 'YouTube',
37+
icon: 'youtube',
38+
url: 'https://www.youtube.com/c/realstoman',
3239
},
3340
],
3441
};
@@ -43,7 +50,7 @@ export default {
4350
</script>
4451

4552
<template>
46-
<div class="container mx-auto ">
53+
<div class="container mx-auto">
4754
<div
4855
class="pt-20 sm:pt-30 pb-8 mt-20 border-t-2 border-primary-light dark:border-secondary-dark"
4956
>

0 commit comments

Comments
 (0)