Skip to content

Commit

Permalink
Add Jobs page
Browse files Browse the repository at this point in the history
  • Loading branch information
nwalters512 committed Aug 11, 2023
1 parent 3c82e70 commit b65ce1e
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ export const Footer: React.FC = () => {
<li className="mb-2">
<FooterLink href="/about">About</FooterLink>
</li>
<li className="mb-2">
<FooterLink href="/jobs">Jobs</FooterLink>
</li>
<li className="mb-2">
<FooterLink href="/security">Security</FooterLink>
</li>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import richorder from "../lib/images/rich_question_order_block.png";
import richball from "../lib/images/rich_question_balltrajectory.png";

import styles from "./index.module.scss";
import { Accordion, Carousel, CarouselItem } from "react-bootstrap";
import { Accordion, Alert, Carousel, CarouselItem } from "react-bootstrap";
import { RequestCourseModal } from "../components/RequestCourseModal";

const TALKING_POINTS = [
Expand Down Expand Up @@ -86,6 +86,10 @@ const Home: React.FC<HomeProps> = ({ seed }) => {
<div className="container-md">
<Row>
<Column>
<Alert variant="primary">
<strong>We&apos;re hiring!</strong>{" "}
<Link href="/jobs">Check out our open positions.</Link>
</Alert>
<h1 className="text-white display-3">
<span>PrairieLearn</span>
</h1>
Expand Down
55 changes: 55 additions & 0 deletions src/pages/jobs/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import { MarkdownLayout } from "../../components/MarkdownLayout";

export const meta = {
title: "Jobs",
};

## Full-Stack Software Engineer

Are you passionate about building innovative web applications? Interested in shaping the future of education? PrairieLearn, an early-stage startup in educational technology, is searching for a talented Full-Stack Software Engineer to join our team.

- Location: Fully Remote (Anywhere in the US)
- Position Type: Full-time

### About us

At PrairieLearn, we’re transforming the way students learn and teachers teach. Our technology empowers educators to create interactive, engaging, and personalized learning experiences. We believe in a future where education is accessible, engaging, and tailored to each individual’s needs.

### About the role

As an early-stage hire, you’ll play an integral part in shaping the direction of our products and company. We’re seeking someone who’s excited to work in a startup environment where every day brings new challenges.

#### Responsibilities

- Design, develop, and maintain our web applications using TypeScript, Postgres, and other technologies.
- Collaborate closely with educators to translate educational needs into high-quality features.
- Participate in code reviews for both team members and outside collaborators.
- Contribute to the architecture and evolution of our system, ensuring scalability and performance.

#### Qualifications

- Proficiency in TypeScript, Python, Postgres, and HTML.
- Experience with back-end frameworks such as Node.js and Express.
- Familiarity with cloud computing platforms and DevOps practices.
- Excellent problem-solving skills and attention to detail.
- Passionate about education and eager to contribute to a growing company.
- Bachelor’s degree in Computer Science or related field, or equivalent experience.

### Why join PrairieLearn?

- **Bootstrapped:** We’re profitable and growing quickly!
- **Open source:** PrairieLearn is an open-source platform, so you’ll work in public directly with developers and educators from around the world.
- **Competitive salary:** We offer a competitive salary that reflects your expertise and potential.
- **Stock options:** As an early-stage teammate, you’ll receive stock options, giving you a stake in our success.
- **Remote work culture:** Work from anywhere in the US and enjoy a flexible schedule that lets you balance work and life.
- **Growth opportunities:** As an early-stage hire, you’ll have the opportunity to grow, learn, and make an outsized impact.
- **Exceptional team:** Collaborate with a talented team including professors from the University of Illinois who are experts in educational technology and highly-scalable web development.

### Apply now

Ready to embark on this exciting journey with PrairieLearn? Apply now by sending your resume, portfolio, and a brief cover letter to [email protected]. PrairieLearn is an equal opportunity employer. We celebrate diversity and are committed to creating an inclusive environment for all employees.


export default ({ children }) => (
<MarkdownLayout meta={meta}>{children}</MarkdownLayout>
);

0 comments on commit b65ce1e

Please sign in to comment.