Skip to content

Commit 301c1bd

Browse files
committed
Single project refactoring
1 parent 62f12c6 commit 301c1bd

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

src/components/projects/ProjectInfo.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
<!-- Single project client details -->
77
<div class="mb-7">
88
<p
9-
class="font-general-regular text-2xl font-semibold text-secondary-dark dark:text-secondary-light mb-2"
9+
class="font-general-medium text-2xl text-secondary-dark dark:text-secondary-light mb-2"
1010
>
1111
{{ projectInfo.clientHeading }}
1212
</p>
1313
<ul class="leading-loose">
1414
<li
1515
v-for="info in projectInfo.companyInfos"
1616
:key="info"
17-
class="font-general-medium text-ternary-dark dark:text-ternary-light"
17+
class="font-general-regular text-ternary-dark dark:text-ternary-light"
1818
>
1919
<span>{{ info.title }}: </span>
2020
<a
@@ -34,12 +34,12 @@
3434
<!-- Single project objectives -->
3535
<div class="mb-7">
3636
<p
37-
class="font-general-regular text-2xl font-semibold text-ternary-dark dark:text-ternary-light mb-2"
37+
class="font-general-medium text-2xl text-ternary-dark dark:text-ternary-light mb-2"
3838
>
3939
{{ projectInfo.objectivesHeading }}
4040
</p>
4141
<p
42-
class="font-general-medium text-primary-dark dark:text-ternary-light"
42+
class="font-general-regular text-primary-dark dark:text-ternary-light"
4343
>
4444
{{ projectInfo.objectivesDetails }}
4545
</p>
@@ -48,12 +48,12 @@
4848
<!-- Single project technologies -->
4949
<div class="mb-7">
5050
<p
51-
class="font-general-regular text-2xl font-semibold text-ternary-dark dark:text-ternary-light mb-2"
51+
class="font-general-medium text-2xl text-ternary-dark dark:text-ternary-light mb-2"
5252
>
5353
{{ projectInfo.technologies[0].title }}
5454
</p>
5555
<p
56-
class="font-general-medium text-primary-dark dark:text-ternary-light"
56+
class="font-general-regular text-primary-dark dark:text-ternary-light"
5757
>
5858
{{ projectInfo.technologies[0].techs.join(', ') }}
5959
</p>
@@ -62,7 +62,7 @@
6262
<!-- Single project social sharing -->
6363
<div>
6464
<p
65-
class="font-general-regular text-2xl font-semibold text-ternary-dark dark:text-ternary-light mb-2"
65+
class="font-general-medium text-2xl text-ternary-dark dark:text-ternary-light mb-2"
6666
>
6767
{{ projectInfo.socialSharingsHeading }}
6868
</p>
@@ -73,7 +73,7 @@
7373
:href="social.url"
7474
target="__blank"
7575
aria-label="Share Project"
76-
class="bg-ternary-light dark:bg-ternary-dark text-gray-400 hover:text-primary-dark dark:hover:text-primary-light p-2 rounded-lg shadow-sm"
76+
class="bg-ternary-light dark:bg-ternary-dark text-gray-400 hover:text-primary-dark dark:hover:text-primary-light p-2 rounded-lg shadow-sm duration-500"
7777
><i
7878
:data-feather="social.icon"
7979
class="w-4 lg:w-5 h-4 lg:h-5"
@@ -86,14 +86,14 @@
8686
<!-- Single project right section details -->
8787
<div class="w-full sm:w-2/3 text-left mt-10 sm:mt-0">
8888
<p
89-
class="font-general-regular text-primary-dark dark:text-primary-light text-2xl font-bold mb-7"
89+
class="font-general-medium text-primary-dark dark:text-primary-light text-2xl font-bold mb-7"
9090
>
9191
{{ projectInfo.projectDetailsHeading }}
9292
</p>
9393
<p
9494
v-for="projectDetail in projectInfo.projectDetails"
9595
:key="projectDetail.id"
96-
class="font-general-medium mb-5 text-lg text-ternary-dark dark:text-ternary-light"
96+
class="font-general-regular mb-5 text-lg text-ternary-dark dark:text-ternary-light"
9797
>
9898
{{ projectDetail.details }}
9999
</p>

src/components/shared/AppFooter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
:key="social.id"
2020
:href="social.url"
2121
target="__blank"
22-
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+
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 duration-500"
2323
>
2424
<i
2525
:data-feather="social.icon"

src/components/shared/FooterCopyright.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<a
88
href="https://github.com/realstoman/vuejs-tailwindcss-portfolio"
99
target="__blank"
10-
class="font-general-medium 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 duration-500"
1111
>
1212
{{ projectName }}
1313
</a>
1414
. Developed by
1515
<a
1616
href="https://stoman.me"
1717
target="__blank"
18-
class="font-general-medium text-secondary-dark dark:text-secondary-light uppercase hover:underline hover:text-indigo-600 dark:hover:text-indigo-300"
18+
class="font-general-medium text-secondary-dark dark:text-secondary-light uppercase hover:underline hover:text-indigo-600 dark:hover:text-indigo-300 duration-500"
1919
>{{ author }}</a
2020
>
2121
</div>

0 commit comments

Comments
 (0)