-
Notifications
You must be signed in to change notification settings - Fork 77
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 #1612 from gtech-mulearn/old-dev-server
Old dev server
- Loading branch information
Showing
18 changed files
with
1,172 additions
and
59 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
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
Binary file renamed
BIN
+73.3 KB
src/Pages/ArtOfTeaching/assets/Guidlines.pdf → ...Pages/ArtOfTeaching/assets/Guidlines1.pdf
Binary file not shown.
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,61 @@ | ||
import React from "react"; | ||
import Navbar from "../../Components/Navbar/Navbar"; | ||
import Footer from "../../Components/Footer/Footer"; | ||
import styles from "./Manifesto.module.css"; | ||
import muLogoBg from "./assets/µ.png"; | ||
import muLogo from "./assets/µLearn-logo.svg"; | ||
import handImg from "./assets/hand.png"; | ||
export default function Manifesto() { | ||
return ( | ||
<> | ||
<Navbar /> | ||
<div className={styles.main}> | ||
<div className={styles.head}> | ||
<img src={muLogoBg} alt="" className={styles.muLogoBg} /> | ||
<div className={styles.textContainer}> | ||
<div className={styles.logoContainer}> | ||
<img src={muLogo} alt="" /> | ||
<div className={styles.ourManifestoText}>Our Manifesto</div> | ||
</div> | ||
<h1>We,The Unbound, The Unbowed</h1> | ||
</div> | ||
<div className={styles.imgContainer}> | ||
<img src={handImg} alt="" /> | ||
</div> | ||
</div> | ||
<div className={styles.firstPara}> | ||
<p> | ||
<span>We, the Unbound, the Unbowed</span>, a tribe of relentless | ||
learners, rise from the ashes of a broken education system.{" "} | ||
<span> | ||
We are the mavericks who dared to question the status quo | ||
</span> | ||
, the misfits who refused to be cogs in the machine of rote | ||
memorization. For far too long, we've navigated the labyrinthine | ||
corridors of standardized curriculums,{" "} | ||
<span>our creativity stifled</span> by the stale{" "} | ||
<span>air of conformity. Not anymore!</span> | ||
</p> | ||
</div> | ||
<div className={styles.secondPara}> | ||
<p> | ||
<span> µLearn is our revolution.</span> Here, curiosity{" "} | ||
<span>reigns</span>, and collaboration is our weapon. We{" "} | ||
<span>transform</span> failures into stepping stones, and together | ||
we <span>redefine</span> learning. | ||
</p> | ||
</div> | ||
<div className={styles.joinRevolution}> | ||
<h2> | ||
Welcome to the <span>µLearn.</span>Welcome to the{" "} | ||
<span>Revolution.</span> | ||
</h2>{" "} | ||
<a href="https://app.mulearn.org" target="_blank" rel="noreferrer"> | ||
<button>Join µLearn</button> | ||
</a> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</> | ||
); | ||
} |
Oops, something went wrong.