|
1 | 1 | import React from 'react'; |
| 2 | +import Title from './common/Title'; |
2 | 3 |
|
| 4 | +import '../styles/AboutUs.styl'; |
3 | 5 |
|
4 | 6 | const About = () => ( |
5 | | - <div> |
6 | | - About page |
7 | | - </div> |
| 7 | + [ |
| 8 | + <div className="about-us" key="about"> |
| 9 | + <Title title="About" key="About title" /> |
| 10 | + <p className="about-us-paragraph"> |
| 11 | + XSnippet is an open source web-service for sharing code snippets on |
| 12 | + the Internet. Years ago it was started as educational project, and |
| 13 | + nothing has changed since then. The service has been rewritten several |
| 14 | + times from scratch and now it consists of: |
| 15 | + </p> |
| 16 | + <ul className="about-us-repo-list"> |
| 17 | + <li className="about-us-repo-item"> |
| 18 | + <span className="about-us-repo">xsnippet-api</span> |
| 19 | + <p className="about-us-paragraph"> |
| 20 | + It implements a RESTful API to manage snippets and flies on top of |
| 21 | + asyncio/aiohttp and MongoDB; |
| 22 | + </p> |
| 23 | + </li> |
| 24 | + <li className="about-us-repo-item"> |
| 25 | + <span className="about-us-repo">xsnippet-web</span> |
| 26 | + <p className="about-us-paragraph"> |
| 27 | + It provides a web-based user interface (SPA) and flies on top of |
| 28 | + React/Redux stack; |
| 29 | + </p> |
| 30 | + </li> |
| 31 | + <li className="about-us-repo-item"> |
| 32 | + <span className="about-us-repo">xsnippet-web-backend</span> |
| 33 | + <p className="about-us-paragraph"> |
| 34 | + It is a tiny app which implements what doesn’t fall under API |
| 35 | + description yet required by xsnippet-web. |
| 36 | + </p> |
| 37 | + </li> |
| 38 | + </ul> |
| 39 | + <p className="about-us-paragraph"> |
| 40 | + These components, and other goodies, can be found in our GitHub: |
| 41 | + </p> |
| 42 | + <a className="about-us-github" href="http://github.com/xsnippet/"> |
| 43 | + http://github.com/xsnippet/ |
| 44 | + </a> |
| 45 | + </div>, |
| 46 | + <div className="about-us" key="team"> |
| 47 | + <Title title="Our Team" key="Team title" /> |
| 48 | + <p className="about-us-paragraph"> |
| 49 | + Modern XSnippet incarnation has been designed and developed by these fine people: |
| 50 | + </p> |
| 51 | + <ul className="about-us-team-list"> |
| 52 | + <li className="about-us-team-item"> |
| 53 | + <img src="http://lorempixel.com/g/100/100/" alt="Ainura Aliieva" /> |
| 54 | + <div> |
| 55 | + <span className="about-us-team-member">Ainura Aliieva</span> |
| 56 | + <p className="about-us-paragraph small">Front-end developer</p> |
| 57 | + </div> |
| 58 | + </li> |
| 59 | + <li className="about-us-team-item"> |
| 60 | + <img src="http://lorempixel.com/g/100/100/" alt="Ihor Kalnytskyi" /> |
| 61 | + <div> |
| 62 | + <span className="about-us-team-member">Ihor Kalnytskyi</span> |
| 63 | + <p className="about-us-paragraph small">Back-end developer</p> |
| 64 | + </div> |
| 65 | + </li> |
| 66 | + <li className="about-us-team-item"> |
| 67 | + <img src="http://lorempixel.com/g/100/100/" alt="Olha Kurkaiedova" /> |
| 68 | + <div> |
| 69 | + <span className="about-us-team-member">Olha Kurkaiedova</span> |
| 70 | + <p className="about-us-paragraph small">Front-end developer</p> |
| 71 | + </div> |
| 72 | + </li> |
| 73 | + <li className="about-us-team-item"> |
| 74 | + <img src="http://lorempixel.com/g/100/100/" alt="Roman Podoliaka" /> |
| 75 | + <div> |
| 76 | + <span className="about-us-team-member">Roman Podoliaka</span> |
| 77 | + <p className="about-us-paragraph small">Back-end developer</p> |
| 78 | + </div> |
| 79 | + </li> |
| 80 | + <li className="about-us-team-item"> |
| 81 | + <img src="http://lorempixel.com/g/100/100/" alt="Kateryna Zharikova" /> |
| 82 | + <div> |
| 83 | + <span className="about-us-team-member">Kateryna Zharikova</span> |
| 84 | + <p className="about-us-paragraph small">Visual Designer</p> |
| 85 | + </div> |
| 86 | + </li> |
| 87 | + </ul> |
| 88 | + </div>, |
| 89 | + ] |
8 | 90 | ); |
9 | 91 |
|
10 | 92 | export default About; |
0 commit comments