Skip to content

Commit cbea7f4

Browse files
committed
refactor: redirect read more to /404
1 parent e4c3a82 commit cbea7f4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

app/(home)/components/Testimonials.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,13 @@ export function TestimonialCard({ text, rate, active }: TestimonialProps) {
225225
<div className="relative sm:hidden h-24 p-5 bg-medium-dark-green border border-[#36FF90] rounded-xl w-full text-clip overflow-hidden">
226226
<div className="text-xs sm:text-base">{text}</div>
227227
<div className="absolute bottom-0 pb-2 pt-14 bg-gradient-to-t from-medium-dark-green from-20% inset-x-5">
228-
<a
229-
href=""
228+
<Link
229+
href="/404"
230230
target="_blank"
231231
className="text-xs sm:text-base text-yellow-400 underline"
232232
>
233233
Read more
234-
</a>
234+
</Link>
235235
</div>
236236
</div>
237237

@@ -251,13 +251,13 @@ export function TestimonialCard({ text, rate, active }: TestimonialProps) {
251251
{text}
252252
</div>
253253
<div className="absolute bottom-14 pb-2 pt-28 bg-gradient-to-t from-medium-dark-green from-25% inset-x-9 lg:inset-x-7 lg:bottom-10">
254-
<a
255-
href=""
254+
<Link
255+
href="/404"
256256
target="_blank"
257257
className="text-[#B3B3B3] underline lg:text-xs"
258258
>
259259
Read more
260-
</a>
260+
</Link>
261261
</div>
262262
</div>
263263
</>

0 commit comments

Comments
 (0)