-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #189 from Bitshala/about
About Page
- Loading branch information
Showing
5 changed files
with
129 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<div class="lg:p-8"> | ||
<h1 | ||
class="mb-8 mt-28 text-center font-header text-3xl font-bold md:text-6xl lg:text-8xl" | ||
id="about_us" | ||
> | ||
About | ||
</h1> | ||
|
||
<p class="m-4 text-base md:text-lg lg:text-2xl"> | ||
Bitshala is a <span class="font-bold text-orange" | ||
>grass-root education initiative</span | ||
> led by Indian Bitcoiners, focused on strengthening the | ||
Bitcoin ecosystem by <span class="font-bold text-orange" | ||
>nurturing and supporting Bitcoin FOSS (Free and Open | ||
Source Software) Devs.</span | ||
> Our mission is to equip people with the skills and | ||
knowledge needed to contribute to Bitcoin FOSS projects. | ||
</p> | ||
<p class="m-4 my-8 text-base md:text-lg lg:text-2xl"> | ||
While a lot of Blockchain courses exist out there to | ||
provide surface-level API lessons on EVM like "smart | ||
contracts", the technical knowledge requirements for | ||
Bitcoin Development are much wider and nuanced. Bitcoin | ||
is a multidisciplinary subject covering Software | ||
Engineering, System Engineering, Networking Protocol | ||
Design, Game Theory, Cryptography, Economics, and Social | ||
Dynamics of Complex Systems like the Market. Thus, | ||
creating a comprehensive bitcoin course is probably | ||
impossible in its entirety, and nothing in the existing | ||
academia and programming boot camps satisfies such | ||
requirements. New people trying to enter into Bitcoin | ||
development thus have to scour through a big set of | ||
parallel subject domains, not well organized and spread | ||
across the internet. | ||
</p> | ||
<p class="m-4 text-base md:text-lg lg:text-2xl"> | ||
Thus Bitshala aims to provide the ground for ideating, | ||
producing, and publishing different categories of | ||
content in Open Source to satisfy the varied learning | ||
need of an aspiring Bitcoin Developer. | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
import AboutUs from "../components/common/AboutUs.astro"; | ||
import People from "../components/home/People.astro"; | ||
import Layout from "../layouts/Layout.astro"; | ||
const isVisible = true; | ||
const headerProps = { | ||
removeHeader: true, | ||
}; | ||
--- | ||
|
||
<Layout | ||
title="About Us" | ||
headerProps={headerProps} | ||
isVisible={isVisible} | ||
> | ||
<AboutUs /> | ||
<People /> | ||
</Layout> |