Skip to content

Commit

Permalink
Merge pull request #194 from Bitshala/closeLBTCL
Browse files Browse the repository at this point in the history
close lbtcl and open pb
  • Loading branch information
rajarshimaitra authored Oct 1, 2024
2 parents 03226e8 + 022342a commit faff2fe
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/components/cohort/CohortCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const cardsList = [
img: "/cohort/lbtcl.webp",
desc: "Learning Bitcoin via CLI is a comprehensive tutorial series that teaches you how to use Bitcoin Core through the command line.",
url: "/cohorts/lbtcl",
status: "Registration Open",
status: "Coming Soon",
},
{
name: "Bitcoin Protocol Development",
Expand All @@ -26,7 +26,7 @@ const cardsList = [
img: "/cohort/pb.webp",
desc: "Programming Bitcoin, a comprehensive tutorial on Bitcoin Core, unlocks the intricacies of Bitcoin development.",
url: "/cohorts/pb",
status: "Coming Soon",
status: "Registration Open",
},
];
---
Expand Down
2 changes: 1 addition & 1 deletion src/components/cohortPages/lbtcl/About.astro
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const takeaways = [
</h1>
<h3 class="mb-5 font-header text-xl lg:text-3xl">
Cohort Kicking off on <span class="text-orange"
>13th September 2024</span
>June 2025</span
>
</h3>
<p class="font-base text-base md:text-lg lg:text-2xl">
Expand Down
6 changes: 3 additions & 3 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const { title, headerProps, isVisible } = Astro.props;
content="https://opengraph.b-cdn.net/production/documents/be8ca05b-5de1-4ab8-99b6-b064c8ad0b4c.png?token=Jriat_jsVklKiXah09FNuY3b8X2kT-Vv-3eN4Cgdyvg&height=675&width=1200&expires=33241899715"
/>
</head>
<body class="bg-white select-none">
<body class="select-none bg-white">
<nav
class="fixed left-0 top-0 z-50 w-full bg-black bg-opacity-[0.5] p-4 backdrop-blur-sm"
>
Expand All @@ -106,8 +106,8 @@ const { title, headerProps, isVisible } = Astro.props;

<div class=`${isVisible ? "block" : "hidden"}`>
<Notification
message="Register for upcoming LBTCL Study Cohort"
url="/cohorts/lbtcl/#applicationForm"
message="Register for upcoming PB Study Cohort"
url="/cohorts/pb/#applicationForm"
client:only
/>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/cohorts/lbtcl.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const headerProps = {
};
const role = "lbtcl_cohort";
const cohortName = "Learning Bitcoin Through Command Line";
const isVisible = false;
const isVisible = true;
---

<Layout
Expand All @@ -29,7 +29,7 @@ const isVisible = false;
format={[
{
name: "Commencement date",
desc: "13th September 2024",
desc: "June 2025",
},
// {
// name: "Registration deadline",
Expand Down Expand Up @@ -116,7 +116,7 @@ const isVisible = false;
client:only
cohortName={cohortName}
role={role}
regOpen={true}
regOpen={false}
/>
</div>
<CohortGraduates />
Expand Down
6 changes: 3 additions & 3 deletions src/pages/cohorts/pb.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const headerProps = {
const role = "pb_cohort";
const cohortName = "Programming Bitcoin";
const isVisible = true;
const isVisible = false;
---

<Layout
Expand Down Expand Up @@ -45,7 +45,7 @@ const isVisible = true;
</h1>
<h3 class="mb-5 font-header text-xl lg:text-3xl">
Cohort Kicking off on <span class="text-orange"
>January, 2025</span
>November 2024</span
>
</h3>
<p class="lg:text-xl">
Expand Down Expand Up @@ -167,7 +167,7 @@ const isVisible = true;
client:only
cohortName={cohortName}
role={role}
regOpen={false}
regOpen={true}
/>
</div>
<Carousel client:visible />
Expand Down

0 comments on commit faff2fe

Please sign in to comment.