Skip to content

Commit

Permalink
Merge pull request #91 from Bitshala/copy-changes
Browse files Browse the repository at this point in the history
Copy changes
  • Loading branch information
emjshrx authored Dec 22, 2023
2 parents 7db30c0 + 773be42 commit beafb9d
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 17 deletions.
46 changes: 34 additions & 12 deletions src/components/review/HowDoesItWork.astro
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
---
import MeetYourTAs from "../cohortPages/MeetYourTAs.astro";
const list = [
{
name: "Stay Updated",
desc: " Keep an eye on this 'README' to find weekly updates and information about upcoming club meetings.",
},
{
name: "Join the Community ",
desc: "Join the Discord server where the link to join the review club jitsi is shared and where PR-related discussions take place.",
},
{
name: "Engage in Discussions",
desc: "Each week's topic details will be included in an Issue. Use the issue comments to post questions and participate in discussions regarding the PR or the review process in general.",
},
{
name: "Review Format",
desc: "We start the review process by checking out the PR and going through the 'Notes and Questions' provided in the topic details.",
Expand Down Expand Up @@ -66,6 +54,40 @@ const team = [
How to participate
</p>
<ul class="mt-5">
<li class="my-3">
<span class="font-bold">Stay Updated</span> :{" "}
Keep an eye on this <a
href="https://github.com/Bitshala/BitcoinCore-PR-Review-Club#bitshala-bitcoin-core-pr-review-club"
target="_blank"
class="underline">'README'</a
> to find weekly updates and information about
upcoming club meetings.
</li>
<li class="my-3">
<span class="font-bold">Join the Community</span>
:{" "}
Join the <a
href="https://discord.gg/eHktFzDnmp"
target="_blank"
class="underline">Discord</a
> server where the link to join the review club
jitsi is shared and where PR-related discussions
take place.
</li>
<li class="my-3">
<span class="font-bold"
>Engage in Discussions</span
> :{" "}
Each week's topic details will be included in an
<a
href="https://github.com/Bitshala/BitcoinCore-PR-Review-Club/issues"
target="_blank"
class="underline">Issue</a
>
. Use the issue comments to post questions and
participate in discussions regarding the PR or the
review process in general.
</li>
{
list.map((item) => (
<li class="my-3">
Expand Down
21 changes: 16 additions & 5 deletions src/pages/review.astro
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,27 @@ const faqConfig = [
},
];
const headerProps = {
heading: "Inner glimpses of Bitcoin Core",
subheading:
"A bi-weekly PR Review Club with experienced core contributors to get your hands dirty with Bitcoin Core Development.",
image: "/website-v2/header/PR_Review_Hero.png",
headingColor: "text-white",
subheadingColor: "text-white",
};
---

<Layout title="PR Review Club" headerProps={headerProps}>
<div slot="headerChild" class="mt-8 lg:mt-16">
<h1
class="text-center font-header text-4xl text-white md:text-6xl lg:text-8xl"
>
Inner glimpses of <span class="text-orange"
>Bitcoin Core</span
>
</h1>
<p
class="mt-10 text-center text-2xl text-white md:text-3xl lg:mt-28 lg:text-4xl"
>
A bi-weekly PR Review Club with experienced core
contributors to get your hands dirty with Bitcoin Core
Development.
</p>
</div>
<HowDoesItWork />
<VideoList videoConfig={videoConfig} />
<EssentialStudyMaterial />
Expand Down

0 comments on commit beafb9d

Please sign in to comment.