|
1 | 1 | import { FC } from 'react'
|
2 | 2 |
|
| 3 | +const githubURL = 'https://github.com/bkrmadtya/sorting-algorithm-visualizer' |
| 4 | +const thesisURL = 'https://www.theseus.fi/handle/10024/507342' |
3 | 5 | const About: FC = () => {
|
4 | | - const url = 'https://github.com/bkrmadtya/sorting-algorithm-visualizer' |
5 | 6 | return (
|
6 | 7 | <div className='aboutPage'>
|
7 | | - <div> |
8 | | - <section> |
9 | | - <h1 className='header'>About the project</h1> |
10 | | - <p className='description'> |
11 | | - This is project is part of the thesis project done for my Bachelor |
12 | | - thesis in Helsinki Metropolia University of Applied Sciences. The |
13 | | - thesis aims to visualize sorting process of different sorting |
14 | | - algorithms and observe how visualization assists in understanding |
15 | | - different ideas, in this case, sorting algorithms. This is project |
16 | | - is part of the thesis project done for my Bachelor thesis in |
17 | | - Helsinki Metropolia University of Applied Sciences. The thesis aims |
18 | | - to visualize sorting process of different sorting algorithms and |
19 | | - observe how visualization assists in understanding different ideas, |
20 | | - in this case, sorting algorithms. |
21 | | - </p> |
22 | | - <table className='details-table'> |
23 | | - <tr> |
24 | | - <td>Tech stack</td> |
25 | | - <td> |
26 | | - <ul> |
27 | | - <li>React</li> |
28 | | - <li>TypeScript</li> |
29 | | - <li>Redux</li> |
30 | | - <li>React-Router</li> |
31 | | - <li>SASS</li> |
32 | | - <li>Webpack</li> |
33 | | - <li>Babel</li> |
34 | | - <li>Eslint</li> |
35 | | - </ul> |
36 | | - </td> |
37 | | - </tr> |
38 | | - <tr> |
39 | | - <td>Github link</td> |
40 | | - <td> |
41 | | - <a className='link' href={url}> |
42 | | - {url} |
43 | | - </a> |
44 | | - </td> |
45 | | - </tr> |
46 | | - </table> |
47 | | - </section> |
48 | | - </div> |
| 8 | + <section> |
| 9 | + <h1 className='aboutPage__header'>About the project</h1> |
| 10 | + <p className='aboutPage__description'> |
| 11 | + This is project is part of the thesis project done for my Bachelor |
| 12 | + thesis in Helsinki Metropolia University of Applied Sciences. The |
| 13 | + thesis aims to visualize sorting process of different sorting |
| 14 | + algorithms and observe how visualization assists in understanding |
| 15 | + different ideas, in this case, sorting algorithms. This is project is |
| 16 | + part of the thesis project done for my Bachelor thesis in Helsinki |
| 17 | + Metropolia University of Applied Sciences. The thesis aims to |
| 18 | + visualize sorting process of different sorting algorithms and observe |
| 19 | + how visualization assists in understanding different ideas, in this |
| 20 | + case, sorting algorithms. |
| 21 | + </p> |
| 22 | + <table className='aboutPage__details'> |
| 23 | + <tr> |
| 24 | + <td>Tech stack</td> |
| 25 | + <td> |
| 26 | + <ul> |
| 27 | + <li>React</li> |
| 28 | + <li>TypeScript</li> |
| 29 | + <li>Redux</li> |
| 30 | + <li>React-Router</li> |
| 31 | + <li>SASS</li> |
| 32 | + <li>Vite</li> |
| 33 | + <li>Eslint</li> |
| 34 | + </ul> |
| 35 | + </td> |
| 36 | + </tr> |
| 37 | + <tr> |
| 38 | + <td>Github link</td> |
| 39 | + <td> |
| 40 | + <a className='aboutPage__details-link' href={githubURL}> |
| 41 | + {githubURL} |
| 42 | + </a> |
| 43 | + </td> |
| 44 | + </tr> |
| 45 | + <tr> |
| 46 | + <td>Thesis link</td> |
| 47 | + <td> |
| 48 | + <a className='aboutPage__details-link' href={thesisURL}> |
| 49 | + {thesisURL} |
| 50 | + </a> |
| 51 | + </td> |
| 52 | + </tr> |
| 53 | + </table> |
| 54 | + </section> |
| 55 | + <footer className='aboutPage__footer'>@bkrmadtya 2021, 2022</footer> |
49 | 56 | </div>
|
50 | 57 | )
|
51 | 58 | }
|
|
0 commit comments