Skip to content

Commit

Permalink
Merge pull request #98 from Bitshala/testimonial
Browse files Browse the repository at this point in the history
#97 : testimonial image
  • Loading branch information
emjshrx authored Dec 25, 2023
2 parents 677ddd5 + 1d6fe0c commit 5816db2
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 28 deletions.
Binary file removed public/testimonial/bitcoin.png
Binary file not shown.
Binary file added public/testimonial/faisal.webp
Binary file not shown.
Binary file removed public/testimonial/goku.png
Binary file not shown.
Binary file added public/testimonial/lazy.webp
Binary file not shown.
Binary file removed public/testimonial/person1.png
Binary file not shown.
Binary file added public/testimonial/shreyan.webp
Binary file not shown.
49 changes: 21 additions & 28 deletions src/components/home/Testimonial.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,55 +4,48 @@ const list = [
title: "Game-changer for Bitcoin Education!",
desc: "The questions and practical exercises. I think they are very well designed to make you deeply reflect on the studied topic. It help me a lot to consolidate knowledge. The kindle and super fast support from bitshala team and the rest of bitshala comunity. Sharing knowledge, experience and a lot of good stuff. I was awesome to me you all. I loved the day when instead of following the planned agenda and discussing the weekly questions, there was a debate on philosophical and profound topics about money and bitcoin. It was great",
name: "Lazysatoshi, Learning Bitcoin via CLI",
image: "/website-v2/testimonial/lazy.webp",
},
{
title: "Transformative Learning Community",
desc: "I feel elated to be a part of the first cohort of graduates from Bitshala, and I hope that it turns into a beacon of Bitcoin literacy in India. It's a tailor-made platform and an avenue of great resources for those who are keen on traversing on a path to learning and imparting Bitcoin education.",
name: "Faisal, Learning Bitcoin via CLI",
image: "/website-v2/testimonial/faisal.webp",
},
{
title: "Rich and Empowering Learning Experience",
desc: "The LBTCL-cohort was an unbelievably rich and empowering exercise in learning the finer details of a Bitcoin node and transactions. Raj and Setu have made the experience worth so much by their sheer enthusiasm and dedication, that it leaves a mark on you. The mentorship and the community at Bitshala is invaluable, and like Bitcoin, it will gradually then suddenly take the world by storm",
name: "Shreyan, Learning Bitcoin via CLI",
image: "/website-v2/testimonial/shreyan.webp",
},
];
---

<div class="mb-10 mt-10"></div>
<div class="flex flex-col items-center lg:flex-row">
<div class="flex h-min md:p-24 lg:p-0">
<div class="mr-8">
<img
src="/website-v2/testimonial/bitcoin.png"
alt="Bitcoin"
/>
</div>
<div class="flex grow flex-col justify-between">
<img
src="/website-v2/testimonial/person1.png"
class="mb-8"
alt="Image of Person 1"
/>
<img
src="/website-v2/testimonial/goku.png"
class="min-h-96"
alt="Image of Person 2"
/>
</div>
<div class="mr-8"></div>
</div>
<div class="ml-1 flex flex-col lg:ml-8">
{
list.map((item) => (
<div class="mt-8">
<h1 class="mb-4 text-2xl font-semibold lg:text-4xl">
{item.title}
</h1>
<p class="text-base md:text-lg lg:text-xl">
{item.desc}
</p>
<p class="mt-1 text-base font-semibold md:text-lg lg:text-2xl">
- {item.name}
</p>
<div class="mt-8 flex-col lg:flex">
<img
src={item.image}
alt={item.name}
class="m-4 h-24 w-24 rounded-full"
/>
<div>
<h1 class="mb-4 text-2xl font-semibold lg:text-4xl">
{item.title}
</h1>
<p class="text-base md:text-lg lg:text-xl">
{item.desc}
</p>
<p class="mt-1 text-base font-semibold md:text-lg lg:text-2xl">
- {item.name}
</p>
</div>
</div>
))
}
Expand Down

0 comments on commit 5816db2

Please sign in to comment.