Skip to content

Commit

Permalink
chore: remove Checklist page (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
magnus-madsen authored Dec 22, 2023
1 parent 3b68f51 commit 1d2e575
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 147 deletions.
4 changes: 0 additions & 4 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,11 @@ import Principles from "./page/Principles";
import Contribute from "./page/Contribute";
import Research from "./page/Research";
import Faq from "./page/Faq";
import Checklist from "./page/misc/Checklist";
import {Container, Navbar, Nav, NavItem, NavLink, Row} from 'reactstrap';
import {Route} from "react-router";
import {Link} from "react-router-dom";

import ReconnectingWebSocket from 'reconnecting-websocket';
import About from "./page/About";
import Blog from "./page/Blog";
import Koans from "./page/Koans";
import Internships from "./page/Internships";
Expand Down Expand Up @@ -129,7 +127,6 @@ class App extends Component {
</Navbar>

<Route path="/" exact render={() => this.getHome()}/>
<Route path="/about/" component={About}/>
<Route path="/get-started/" component={GetStarted}/>
<Route path="/principles/" component={Principles}/>
<Route path="/documentation/" component={Documentation}/>
Expand All @@ -139,7 +136,6 @@ class App extends Component {
<Route path="/contribute/" component={Contribute}/>
<Route path="/internships/" component={Internships}/>

<Route path="/misc/checklist/" component={Checklist}/>
<Route path="/misc/koans/" component={Koans}/>

<Row/>
Expand Down
14 changes: 0 additions & 14 deletions src/page/Documentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { FaStream } from 'react-icons/fa';
import { FaMicroblog } from 'react-icons/fa';
import { FaGitter } from 'react-icons/fa';
import { FaGithub } from 'react-icons/fa';
import { FaRegLaughSquint } from 'react-icons/fa';
import { MdSchool } from 'react-icons/md';
import { GoGraph } from 'react-icons/go';

Expand Down Expand Up @@ -133,19 +132,6 @@ class Documentation extends Component {
</Card>
</a>
</Col>

<Col lg="2">
<Link to="/misc/checklist">
<Card body className="h-100">
<CardSubtitle className="text-center m-4 text-black-50">
<FaRegLaughSquint style={{ fontSize: '3em' }} />
</CardSubtitle>
<CardTitle className="text-center link-primary">
Language Checklist
</CardTitle>
</Card>
</Link>
</Col>
</Row>
</Container>
);
Expand Down
129 changes: 0 additions & 129 deletions src/page/misc/Checklist.js

This file was deleted.

0 comments on commit 1d2e575

Please sign in to comment.