File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <div class =" container mx-auto pt-20 sm:pt-40 pb-8" >
2
+ <div
3
+ class =" container mx-auto pt-20 sm:pt-30 pb-8 mt-20 border-t-2 border-secondary-dark"
4
+ >
5
+ <!-- Footer social links start -->
3
6
<div class =" flex flex-col justify-center items-center mb-12 sm:mb-28" >
4
7
<p
5
8
class =" text-3xl sm:text-4xl font-semibold text-primary-dark dark:text-primary-light mb-5"
40
43
</a >
41
44
</ul >
42
45
</div >
46
+ <!-- Footer social links end -->
47
+
48
+ <!-- Footer copyright start -->
43
49
<div class =" flex justify-center items-center text-center" >
44
50
<div class =" text-lg text-ternary-dark dark:text-ternary-light" >
45
- © ; Copyright 2021.
51
+ © ; Copyright {{ copyrightDate }}. Vue.js & TailwindCSS
52
+ Portfolio.
46
53
<a
47
- href =" http ://stoman.me"
54
+ href =" https ://stoman.me"
48
55
target =" __blank"
49
- class =" text-secondary-dark dark:text-secondary-light font-medium"
56
+ class =" text-secondary-dark dark:text-secondary-light font-medium uppercase "
50
57
>Stoman</a
51
58
>
52
59
</div >
53
60
</div >
61
+ <!-- Footer copyright end -->
54
62
</div >
55
63
</template >
56
64
57
65
<script >
58
66
import feather from ' feather-icons' ;
59
67
export default {
68
+ data () {
69
+ return {
70
+ copyrightDate: new Date ().getFullYear (),
71
+ };
72
+ },
60
73
mounted () {
61
74
feather .replace ();
62
75
},
You can’t perform that action at this time.
0 commit comments