File tree Expand file tree Collapse file tree 2 files changed +40
-22
lines changed Expand file tree Collapse file tree 2 files changed +40
-22
lines changed Original file line number Diff line number Diff line change 6
6
>
7
7
<!-- Footer social links -->
8
8
<div
9
- class =" flex flex-col justify-center items-center mb-12 sm:mb-28 "
9
+ class =" flex flex-col justify-center items-center mb-12 sm:mb-20 "
10
10
>
11
11
<p
12
- class =" text-3xl sm:text-4xl font-semibold text-primary-dark dark:text-primary-light mb-5"
12
+ class =" font-general-semibold text-3xl sm:text-4xl font-semibold text-primary-dark dark:text-primary-light mb-5"
13
13
>
14
14
Follow me
15
15
</p >
30
30
</div >
31
31
32
32
<!-- Footer copyright -->
33
- <div class =" flex justify-center items-center text-center" >
34
- <div class =" text-lg text-ternary-dark dark:text-ternary-light " >
35
- © ; {{ copyrightDate }}.
36
- <a
37
- href =" https://github.com/realstoman/vuejs-tailwindcss-portfolio"
38
- target =" __blank"
39
- class =" hover:underline"
40
- >
41
- Vue.js & TailwindCSS Portfolio
42
- </a >
43
- .
44
- <a
45
- href =" https://stoman.me"
46
- target =" __blank"
47
- class =" text-secondary-dark dark:text-secondary-light font-medium uppercase hover:underline"
48
- >Stoman</a
49
- >
50
- </div >
51
- </div >
33
+ <FooterCopyright />
52
34
</div >
53
35
</div >
54
36
</template >
55
37
56
38
<script >
57
39
import feather from ' feather-icons' ;
40
+ import FooterCopyright from ' ./FooterCopyright.vue' ;
58
41
export default {
42
+ components: { FooterCopyright },
59
43
data () {
60
44
return {
61
- copyrightDate: new Date ().getFullYear (),
62
45
socials: [
63
46
{
64
47
id: 1 ,
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" flex justify-center items-center text-center" >
3
+ <div
4
+ class =" font-general-medium text-lg text-ternary-dark dark:text-ternary-light"
5
+ >
6
+ © ; {{ copyrightDate }}.
7
+ <a
8
+ href =" https://github.com/realstoman/vuejs-tailwindcss-portfolio"
9
+ target =" __blank"
10
+ class =" hover:underline"
11
+ >
12
+ Vue.js & TailwindCSS Portfolio
13
+ </a >
14
+ .
15
+ <a
16
+ href =" https://stoman.me"
17
+ target =" __blank"
18
+ class =" text-secondary-dark dark:text-secondary-light font-medium uppercase hover:underline"
19
+ >Stoman</a
20
+ >
21
+ </div >
22
+ </div >
23
+ </template >
24
+
25
+ <script >
26
+ export default {
27
+ data : () => {
28
+ return {
29
+ copyrightDate: new Date ().getFullYear (),
30
+ };
31
+ },
32
+ };
33
+ </script >
34
+
35
+ <style lang="scss" scoped></style >
You can’t perform that action at this time.
0 commit comments