Skip to content

Commit 4713232

Browse files
committed
Single project and footer design changes
1 parent f75f961 commit 4713232

File tree

3 files changed

+44
-40
lines changed

3 files changed

+44
-40
lines changed

src/components/project/SingleProjectRelatedProjects.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<template>
22
<!-- Related projects start -->
3-
<div class="mt-10 sm:mt-20">
3+
<div
4+
class="mt-10 pt-10 sm:pt-14 sm:mt-20 border-t-2 border-primary-light dark:border-secondary-dark"
5+
>
46
<p
5-
class="text-primary-dark dark:text-primary-light text-3xl font-bold mb-10 sm:mb-14"
7+
class="text-primary-dark dark:text-primary-light text-3xl font-bold mb-10 sm:mb-14 text-left"
68
>
79
Related Projects
810
</p>

src/components/shared/Footer.vue

Lines changed: 40 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,49 @@
11
<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"
99
>
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"
1912
>
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 -->
2831

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-
&copy; 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+
&copy; 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>
4044
</div>
45+
<!-- Footer copyright end -->
4146
</div>
42-
<!-- Footer copyright end -->
4347
</div>
4448
</template>
4549

src/views/SingleProject.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
<!-- Project information -->
1010
<SingleProjectInfo />
1111

12-
<hr class="mt-10 sm:mt-20 text-ternary-dark dark:text-ternary-dark" />
13-
1412
<!-- Project related projects -->
1513
<SingleProjectRelatedProjects />
1614
</div>

0 commit comments

Comments
 (0)