Skip to content

Commit

Permalink
Merge pull request #55 from Bitshala/checkerboard
Browse files Browse the repository at this point in the history
fixes #13 : [Cohorts] Checkerboard
  • Loading branch information
emjshrx authored Dec 1, 2023
2 parents 78790c2 + e29f2df commit 14ba943
Show file tree
Hide file tree
Showing 5 changed files with 79 additions and 0 deletions.
Binary file added public/cohort/checkerboard1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/cohort/checkerboard2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/cohort/checkerboard3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
77 changes: 77 additions & 0 deletions src/components/cohort/Checkerboard.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<div class="flex flex-col">
<div class="my-5 flex flex-col xl:my-0 xl:flex-row">
<div
class="flex flex-col items-center justify-center bg-peach p-5 xl:w-1/2 xl:p-10 xl:px-40"
>
<span class="text-orange"></span>
<h1 class="font-header text-3xl xl:text-6xl">
A close-knit community to <span class="text-orange"
>grow together</span
> with
</h1>
<p class="my-10 xl:text-2xl">
A community of like-minded individuals – a tribe of
learners who, like you, are hungry for knowledge and
connection.
</p>
</div>
<div
class="bg-orange px-5 pt-5 xl:w-1/2 xl:px-32 xl:pt-32"
>
<img
src="/website-v2/public/cohort/checkerboard1.png"
class="w-auto"
/>
</div>
</div>
<div class="flex flex-col xl:flex-row">
<div
class="bg-orange px-5 pt-5 xl:w-1/2 xl:px-32 xl:pt-32"
>
<img
src="/website-v2/public/cohort/checkerboard2.png"
class="w-auto"
/>
</div>
<div
class="flex flex-col items-center justify-center bg-peach p-5 xl:w-1/2 xl:p-10 xl:px-40"
>
<h1 class="font-header text-3xl xl:text-6xl">
A roadmap that leads<span class="text-orange"
>beyond the beginner phase</span
>
</h1>
<p class="my-10 xl:text-2xl">
A structured path, a guided journey to progress from
surface-level understanding to a deeper
comprehension of Bitcoin's technical intricacies and
broader implications.
</p>
</div>
</div>
<div class="flex flex-col xl:flex-row">
<div
class="my-5 flex flex-col items-center justify-center bg-peach p-5 xl:my-0 xl:w-1/2 xl:p-10 xl:px-40"
>
<h1 class="font-header text-3xl xl:text-6xl">
An <span class="text-orange">
opportunity to break into</span
> the world of Bitcoin Development
</h1>
<p class="my-10 xl:text-2xl">
An opportunity to gain hands-on experience with a
network of experienced Bitcoin developers giving you
the support you need to take your first steps into
the development world of Bitcoin.
</p>
</div>
<div
class="bg-orange px-5 pt-5 xl:w-1/2 xl:px-32 xl:pt-32"
>
<img
src="/website-v2/public/cohort/checkerboard3.png"
class="w-auto"
/>
</div>
</div>
</div>
2 changes: 2 additions & 0 deletions src/pages/cohort.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Footer from "../components/common/Footer.astro";
import Carousel from "../components/common/Carousel";
import Header from "../components/common/Header.astro";
import { CollapseList } from "../components/cohort/CollapseList";
import Checkerboard from "../components/cohort/Checkerboard.astro";
const faqConfig = [
{
Expand Down Expand Up @@ -44,6 +45,7 @@ const faqConfig = [
/>

<CohortCard />
<Checkerboard />
<CollapseList
listConfig={faqConfig}
header="Checkout some of the FAQs"
Expand Down

0 comments on commit 14ba943

Please sign in to comment.