Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Testimonial/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function Testimonial({
testimonial: TestimonialProps;
}): JSX.Element {
return (
<article className={styles.container}>
<li className={styles.container}>
<blockquote className={styles.quote}>{text}</blockquote>

<div className={styles.author}>
Expand All @@ -37,6 +37,6 @@ export default function Testimonial({
</a>
</div>
</div>
</article>
</li>
);
}
10 changes: 8 additions & 2 deletions src/components/Testimonials/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ export default function Testimonials(): JSX.Element {
img: "https://pbs.twimg.com/profile_images/1789664405740736512/PBu6OhgZ_400x400.jpg",
text: "Thanks to Juno's well-documented get-started guide, we had it up and running in under 5 minutes. Our first decentralized analytics tool is now live and kicking!"
},
{
name: "Nezovskii Konstantin",
twitter: "nezovskii",
img: "https://pbs.twimg.com/profile_images/1673509145104850945/V87HzJPL_400x400.jpg",
text: "If you're looking to start building on ICP, you definitely need to check out Juno! It's been a game-changer for me."
},
{
name: "DFINITY Developers ∞",
twitter: "DFINITYDev",
Expand All @@ -49,11 +55,11 @@ export default function Testimonials(): JSX.Element {
What people are saying
</p>

<div className={styles.grid}>
<ul className={styles.grid}>
{testimonials.map((testimonial, i) => (
<Testimonial testimonial={testimonial} key={i} />
))}
</div>
</ul>
</>
);
}
2 changes: 2 additions & 0 deletions src/components/Testimonials/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@
@include grid.columns;
--grid-gap: 3rem;
margin: 0 0 4rem;
padding: 0;
list-style: none;
}