-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba9dd7d
commit 805d839
Showing
4 changed files
with
28 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { Container, Row } from "react-bootstrap"; | ||
|
||
const About = () => { | ||
return ( | ||
<Container className="pt-5" style={{ textAlign: "center" }} fluid> | ||
<Row className="mb-5"> | ||
<h1 className="display-4">about</h1> | ||
<p className="lead"> | ||
This is a simple platform for aggregating robots, robot parts and | ||
build guides. | ||
</p> | ||
<p> | ||
It is maintained by <a href="https://kscale.dev/">K-Scale Labs</a>{" "} | ||
with source code freely available on{" "} | ||
<a href="https://github.com/kscalelabs/store">Github</a>. | ||
</p> | ||
</Row> | ||
</Container> | ||
); | ||
}; | ||
|
||
export default About; |
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