|
1 | 1 | <template>
|
2 |
| - <div |
3 |
| - class="container mx-auto pt-20 sm:pt-30 pb-8 mt-20 border-t-2 border-primary-light dark:border-secondary-dark" |
4 |
| - > |
5 |
| - <!-- Footer social links start --> |
6 |
| - <div class="flex flex-col justify-center items-center mb-12 sm:mb-28"> |
7 |
| - <p |
8 |
| - class="text-3xl sm:text-4xl font-semibold text-primary-dark dark:text-primary-light mb-5" |
| 2 | + <div class="container mx-auto "> |
| 3 | + <div |
| 4 | + class="innercontent pt-20 sm:pt-30 pb-8 mt-20 border-t-2 border-primary-light dark:border-secondary-dark" |
| 5 | + > |
| 6 | + <!-- Footer social links start --> |
| 7 | + <div |
| 8 | + class="flex flex-col justify-center items-center mb-12 sm:mb-28" |
9 | 9 | >
|
10 |
| - Follow me |
11 |
| - </p> |
12 |
| - <ul class="flex gap-4 sm:gap-8"> |
13 |
| - <a |
14 |
| - v-for="social in socials" |
15 |
| - :key="social.id" |
16 |
| - :href="social.url" |
17 |
| - target="__blank" |
18 |
| - class="text-gray-400 hover:text-indigo-500 dark:hover:text-indigo-400 cursor-pointer rounded-lg bg-gray-50 dark:bg-ternary-dark hover:bg-gray-100 shadow-sm∫ p-4" |
| 10 | + <p |
| 11 | + class="text-3xl sm:text-4xl font-semibold text-primary-dark dark:text-primary-light mb-5" |
19 | 12 | >
|
20 |
| - <i |
21 |
| - :data-feather="social.icon" |
22 |
| - class="w-6 sm:w-8 h-6 sm:h-8" |
23 |
| - ></i> |
24 |
| - </a> |
25 |
| - </ul> |
26 |
| - </div> |
27 |
| - <!-- Footer social links end --> |
| 13 | + Follow me |
| 14 | + </p> |
| 15 | + <ul class="flex gap-4 sm:gap-8"> |
| 16 | + <a |
| 17 | + v-for="social in socials" |
| 18 | + :key="social.id" |
| 19 | + :href="social.url" |
| 20 | + target="__blank" |
| 21 | + class="text-gray-400 hover:text-indigo-500 dark:hover:text-indigo-400 cursor-pointer rounded-lg bg-gray-50 dark:bg-ternary-dark hover:bg-gray-100 shadow-sm∫ p-4" |
| 22 | + > |
| 23 | + <i |
| 24 | + :data-feather="social.icon" |
| 25 | + class="w-6 sm:w-8 h-6 sm:h-8" |
| 26 | + ></i> |
| 27 | + </a> |
| 28 | + </ul> |
| 29 | + </div> |
| 30 | + <!-- Footer social links end --> |
28 | 31 |
|
29 |
| - <!-- Footer copyright start --> |
30 |
| - <div class="flex justify-center items-center text-center"> |
31 |
| - <div class="text-lg text-ternary-dark dark:text-ternary-light"> |
32 |
| - © Copyright {{ copyrightDate }}. Vue.js & TailwindCSS |
33 |
| - Portfolio. |
34 |
| - <a |
35 |
| - href="https://stoman.me" |
36 |
| - target="__blank" |
37 |
| - class="text-secondary-dark dark:text-secondary-light font-medium uppercase" |
38 |
| - >Stoman</a |
39 |
| - > |
| 32 | + <!-- Footer copyright start --> |
| 33 | + <div class="flex justify-center items-center text-center"> |
| 34 | + <div class="text-lg text-ternary-dark dark:text-ternary-light"> |
| 35 | + © Copyright {{ copyrightDate }}. Vue.js & TailwindCSS |
| 36 | + Portfolio. |
| 37 | + <a |
| 38 | + href="https://stoman.me" |
| 39 | + target="__blank" |
| 40 | + class="text-secondary-dark dark:text-secondary-light font-medium uppercase" |
| 41 | + >Stoman</a |
| 42 | + > |
| 43 | + </div> |
40 | 44 | </div>
|
| 45 | + <!-- Footer copyright end --> |
41 | 46 | </div>
|
42 |
| - <!-- Footer copyright end --> |
43 | 47 | </div>
|
44 | 48 | </template>
|
45 | 49 |
|
|
0 commit comments