-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
add more testimonials and hide other content
1 parent
190d971
commit 910944b
Showing
2 changed files
with
85 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<div class="pt-8 sm:inline-block sm:w-full sm:px-4"> | ||
<figure class="rounded-2xl bg-gray-50 p-8 text-sm leading-6"> | ||
<blockquote class="text-gray-900"> | ||
<p>{Astro.props.testimonial}</p> | ||
</blockquote> | ||
<figcaption class="mt-6 flex items-center gap-x-4"> | ||
<img | ||
class="h-10 w-10 rounded-full bg-gray-50" | ||
src={Astro.props.avatar} | ||
alt="Tom Coleman" | ||
/> | ||
<div> | ||
<div class="font-semibold text-gray-900"> | ||
{Astro.props.name} | ||
</div> | ||
<div class="text-gray-600"> | ||
{Astro.props.position} | ||
</div> | ||
</div> | ||
</figcaption> | ||
</figure> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters