@@ -7,7 +7,7 @@ const ProjectInfo = () => {
7
7
return (
8
8
< div className = "block sm:flex gap-0 sm:gap-10 mt-14" >
9
9
< div className = "w-full sm:w-1/3 text-left" >
10
- { /* Single project client details start */ }
10
+ { /* Single project client details */ }
11
11
< div className = "mb-7" >
12
12
< p className = "font-general-regular text-2xl font-semibold text-secondary-dark dark:text-secondary-light mb-2" >
13
13
{ singleProjectData . ProjectInfo . ClientHeading }
@@ -26,7 +26,7 @@ const ProjectInfo = () => {
26
26
className = {
27
27
info . title === 'Website' ||
28
28
info . title === 'Phone'
29
- ? 'hover:underline cursor-pointer'
29
+ ? 'hover:underline hover:text-indigo-500 dark:hover:text-indigo-400 cursor-pointer duration-300 '
30
30
: ''
31
31
}
32
32
aria-label = "Project Website and Phone"
@@ -39,9 +39,8 @@ const ProjectInfo = () => {
39
39
) }
40
40
</ ul >
41
41
</ div >
42
- { /* Single project client details end */ }
43
42
44
- { /* Single project objectives start */ }
43
+ { /* Single project objectives */ }
45
44
< div className = "mb-7" >
46
45
< p className = "font-general-regular text-2xl font-semibold text-ternary-dark dark:text-ternary-light mb-2" >
47
46
{ singleProjectData . ProjectInfo . ObjectivesHeading }
@@ -50,9 +49,8 @@ const ProjectInfo = () => {
50
49
{ singleProjectData . ProjectInfo . ObjectivesDetails }
51
50
</ p >
52
51
</ div >
53
- { /* Single project objectives end */ }
54
52
55
- { /* Single project technologies start */ }
53
+ { /* Single project technologies */ }
56
54
< div className = "mb-7" >
57
55
< p className = "font-general-regular text-2xl font-semibold text-ternary-dark dark:text-ternary-light mb-2" >
58
56
{ singleProjectData . ProjectInfo . Technologies [ 0 ] . title }
@@ -63,9 +61,8 @@ const ProjectInfo = () => {
63
61
) }
64
62
</ p >
65
63
</ div >
66
- { /* Single project technologies end */ }
67
64
68
- { /* Single project social sharing start */ }
65
+ { /* Single project social sharing */ }
69
66
< div >
70
67
< p className = "font-general-regular text-2xl font-semibold text-ternary-dark dark:text-ternary-light mb-2" >
71
68
{ singleProjectData . ProjectInfo . SocialSharingHeading }
@@ -79,7 +76,7 @@ const ProjectInfo = () => {
79
76
href = { social . url }
80
77
target = "__blank"
81
78
aria-label = "Share Project"
82
- className = "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"
79
+ className = "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 "
83
80
>
84
81
< span className = "text-lg lg:text-2xl" >
85
82
{ social . icon }
@@ -90,11 +87,9 @@ const ProjectInfo = () => {
90
87
) }
91
88
</ div >
92
89
</ div >
93
- { /* Single project social sharing end */ }
94
90
</ div >
95
- { /* Single project left section details end */ }
96
91
97
- { /* Single project right section details start */ }
92
+ { /* Single project right section */ }
98
93
< div className = "w-full sm:w-2/3 text-left mt-10 sm:mt-0" >
99
94
< p className = "font-general-regular text-primary-dark dark:text-primary-light text-2xl font-bold mb-7" >
100
95
{ singleProjectData . ProjectInfo . ProjectDetailsHeading }
@@ -110,7 +105,6 @@ const ProjectInfo = () => {
110
105
) ;
111
106
} ) }
112
107
</ div >
113
- { /* Single project right section details end */ }
114
108
</ div >
115
109
) ;
116
110
} ;
0 commit comments