Skip to content

Commit 77151bb

Browse files
committed
Footer copyright refactoring
1 parent 7e29f95 commit 77151bb

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/components/shared/FooterCopyright.vue

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<template>
22
<div class="flex justify-center items-center text-center">
33
<div
4-
class="font-general-medium text-lg text-ternary-dark dark:text-ternary-light"
4+
class="font-general-regular text-lg text-ternary-dark dark:text-ternary-light"
55
>
66
&copy; {{ copyrightDate }}.
77
<a
88
href="https://github.com/realstoman/vuejs-tailwindcss-portfolio"
99
target="__blank"
10-
class="hover:underline hover:text-indigo-600 dark:hover:text-indigo-300"
10+
class="font-general-medium hover:underline hover:text-indigo-600 dark:hover:text-indigo-300"
1111
>
12-
Vue.js & TailwindCSS Portfolio
12+
{{ projectName }}
1313
</a>
14-
.
14+
. Developed by
1515
<a
1616
href="https://stoman.me"
1717
target="__blank"
18-
class="text-secondary-dark dark:text-secondary-light font-medium uppercase hover:underline hover:text-indigo-600 dark:hover:text-indigo-300"
19-
>Stoman</a
18+
class="font-general-medium text-secondary-dark dark:text-secondary-light uppercase hover:underline hover:text-indigo-600 dark:hover:text-indigo-300"
19+
>{{ author }}</a
2020
>
2121
</div>
2222
</div>
@@ -27,6 +27,8 @@ export default {
2727
data: () => {
2828
return {
2929
copyrightDate: new Date().getFullYear(),
30+
projectName: 'Vue.js & TailwindCSS Portfolio',
31+
author: 'Stoman',
3032
};
3133
},
3234
};

0 commit comments

Comments
 (0)