Compare commits
2 Commits
e179aa1743
...
d2c04d58f2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d2c04d58f2 | ||
|
|
0f05090b99 |
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
import { markdownToHtml } from '@/lib/markdown';
|
||||||
import StarRating from './subcomponents/StarRating.astro';
|
import StarRating from './subcomponents/StarRating.astro';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@@ -34,15 +35,14 @@ const reviewsToShow = reviews.reviews.slice(0, 5);
|
|||||||
<div class="flex flex-col gap-6.5">
|
<div class="flex flex-col gap-6.5">
|
||||||
{ reviewsToShow.map((review) => (
|
{ reviewsToShow.map((review) => (
|
||||||
<div class="flex flex-col justify-center gap-3 bg-neutral-50 py-4 px-5.5 rounded-2xl shadow-sm">
|
<div class="flex flex-col justify-center gap-3 bg-neutral-50 py-4 px-5.5 rounded-2xl shadow-sm">
|
||||||
<div class="flex flex-col justify-center gap-[5px]">
|
<div class="flex flex-col justify-center gap-1.25">
|
||||||
<h4 class="text-2xl font-semibold">{review.name}</h4>
|
<h4 class="text-2xl font-semibold">{review.name}</h4>
|
||||||
<div>
|
<div>
|
||||||
<StarRating size="small" stars={review.stars} />
|
<StarRating size="small" stars={review.stars} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div set:html={markdownToHtml(review.review)}>
|
||||||
{ review.review }
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)) }
|
)) }
|
||||||
|
|||||||
Reference in New Issue
Block a user