Skip to content

Commit

Permalink
Merge pull request #88 from Bitshala/studyMaterialLink
Browse files Browse the repository at this point in the history
fixes #72 : [copy] Review Club
  • Loading branch information
emjshrx authored Dec 22, 2023
2 parents beafb9d + 605f22a commit 7013f68
Showing 1 changed file with 25 additions and 15 deletions.
40 changes: 25 additions & 15 deletions src/components/review/EssentialStudyMaterial.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,38 @@
const list1 = [
{
name: "Common operational steps of Core Review Process",
link: "",
code: "dummylink",
link: "https://youtu.be/n5CRJRqkAoc",
code: "https://github.com/Bitshala/BitcoinCore-PR-Review-Club/blob/main/test-pr.sh",
},
{
name: "Bitcoin Core Codebase Introductory Tour",
link: "",
link: "https://www.youtube.com/watch?v=MbinzItqsXI",
},
];
const list2 = [
{
name: "Contributing to Bitcoin Core",
link: "",
link: "https://github.com/bitcoin/bitcoin/blob/master/CONTRIBUTING.md",
},
{
name: "Developer Notes",
link: "",
link: "https://github.com/bitcoin/bitcoin/blob/master/doc/developer-notes.md",
},
{
name: "Introduction to Bitcoin Core Development",
link: "",
link: "https://bitcointechtalk.com/a-gentle-introduction-to-bitcoin-core-development-fdc95eaee6b8",
},
{
name: "Contributing to Bitcoin Core, a personal account",
link: "",
link: "https://johnnewbery.com/contributing-to-bitcoin-core-a-personal-account/",
},
{
name: "Onboarding to Bitcoin Core",
link: "",
link: "https://medium.com/@amitiu/onboarding-to-bitcoin-core-7c1a83b20365",
},
{
name: "From “Hello World” to Bitcoin Core",
link: "",
link: "https://rajarshi149.medium.com/from-hello-world-to-bitcoin-core-dd233ce99f72",
},
];
---
Expand All @@ -52,16 +52,22 @@ const list2 = [
<div class="mb-5 mt-10 flex justify-between lg:mr-10">
<p class="font-black lg:text-xl">{item.name}</p>
<div class="flex">
<button class="m-1 rounded-lg border-2 border-dotted hover:bg-orange hover:text-white lg:ml-2 lg:px-5 lg:py-2">
<a
href={item.link}
target="_blank"
class="m-1 rounded-lg border-2 border-dotted hover:bg-orange hover:text-white lg:ml-2 lg:px-5 lg:py-2"
>
Watch Video
</button>
<button
</a>
<a
href={item.code}
target="_blank"
class={`rounded-lg border-2 hover:bg-orange hover:text-white ${
item.code ? "inline" : "hidden"
} m-1 border-dotted lg:px-5 lg:py-2`}
>
View Code
</button>
</a>
</div>
</div>
<hr class="border-spacing-12 border-dashed" />
Expand All @@ -77,9 +83,13 @@ const list2 = [
<>
<div class="mb-5 mt-10 flex justify-between lg:mr-10">
<p class="font-black lg:text-xl">{item.name}</p>
<button class="w-1/5 rounded-lg border-2 border-dotted p-2 hover:bg-orange hover:text-white lg:w-auto lg:px-5 lg:py-2">
<a
href={item.link}
target="_blank"
class="w-1/5 rounded-lg border-2 border-dotted p-2 hover:bg-orange hover:text-white lg:w-auto lg:px-5 lg:py-2"
>
Read Now
</button>
</a>
</div>
<hr class="border-spacing-12 border-dashed" />
</>
Expand Down

0 comments on commit 7013f68

Please sign in to comment.