Skip to content

Commit f52b9d5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9ebfd2d commit f52b9d5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/components/sections/testimonials.astro

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ const sectionSubtitle = "Hear from our community";
6060

6161
<div class="testimonials-grid grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 max-w-6xl mx-auto">
6262
{testimonials.map((testimonial) => (
63-
<a
63+
<a
6464
href={testimonial.linkedinUrl}
6565
target="_blank"
6666
rel="noopener noreferrer"
6767
class="testimonial-card bg-white rounded-xl shadow-lg hover:shadow-xl transition-all duration-300 p-6 border border-gray-100 hover:border-[#0077b5] hover:-translate-y-1 group"
6868
>
6969
<div class="flex items-center mb-4">
70-
<img
70+
<img
7171
src={testimonial.profileImage}
7272
alt={`${testimonial.name}'s profile picture`}
7373
class="w-12 h-12 rounded-full mr-3 border-2 border-gray-200"
@@ -97,15 +97,15 @@ const sectionSubtitle = "Hear from our community";
9797
background-color: #d4d5e5;
9898
z-index: 1;
9999
}
100-
100+
101101
.testimonial-card:hover {
102102
transform: translateY(-4px);
103103
}
104-
104+
105105
.testimonials-grid {
106106
animation: fadeInUp 0.6s ease-out;
107107
}
108-
108+
109109
@keyframes fadeInUp {
110110
from {
111111
opacity: 0;
@@ -116,8 +116,8 @@ const sectionSubtitle = "Hear from our community";
116116
transform: translateY(0);
117117
}
118118
}
119-
119+
120120
.container {
121121
max-width: 1150px;
122122
}
123-
</style>
123+
</style>

0 commit comments

Comments
 (0)