Skip to content

Commit

Permalink
Merge pull request #50 from linkwarden/dev
Browse files Browse the repository at this point in the history
minor enhancement
  • Loading branch information
daniel31x13 authored Jun 11, 2024
2 parents d3c67ae + 70c3678 commit c2c19a5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions components/Testimonial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import TwitterX from "./svg/TwitterX";
import Mastodon from "./svg/Mastodon";
import Link from "next/link";
import Masonry from "react-masonry-css";
import Image from "next/image";

type Props = {
className?: string;
Expand Down Expand Up @@ -108,13 +109,15 @@ const Testimony = ({
className || ""
}`}
>
<p className="text-text">"{text}"</p>
<p className="text-text">&quot;{text}&quot;</p>
<div className="flex justify-between items-end">
<div>
<div className="flex items-center gap-3">
<img
<Image
src={photo}
alt={name}
width={40}
height={40}
className="w-10 h-10 rounded-full object-cover"
/>
<div>
Expand Down

0 comments on commit c2c19a5

Please sign in to comment.