|
| 1 | +import React from 'react'; |
| 2 | + |
| 3 | +const About = () => ( |
| 4 | + <div> |
| 5 | + <h1 className='page-title'>About</h1> |
| 6 | + <div className='text-div'> |
| 7 | + <p> |
| 8 | + Follow me (<b>Dj0wns</b>) on <a href="https://twitter.com/Dj0wns">Twitter</a> to keep up to date with new AoEPulse updates and features or reach out with any questions or bug reports! |
| 9 | + </p> |
| 10 | + <h2>Tools and Technologies</h2> |
| 11 | + <ul> |
| 12 | + <li> |
| 13 | + This website is entirely open source! The source code is on GitHub at: <a href="https://github.com/dj0wns/AoE_Openings">https://github.com/dj0wns/AoE_Openings</a> |
| 14 | + </li> |
| 15 | + <li> |
| 16 | + Match histories are pulled from the <a href="https://aoe2.net/">aoe2.net</a> API. |
| 17 | + </li> |
| 18 | + <li> |
| 19 | + Replay files for each of those matches are then pulled from the <a href="https://aoe.ms/">aoe.ms</a> API. |
| 20 | + </li> |
| 21 | + <li> |
| 22 | + The replays are then parsed with the <a href="https://github.com/happyleavesaoc/aoc-mgz">aoc-mgz</a> python library. |
| 23 | + </li> |
| 24 | + </ul> |
| 25 | + <h2>Acknowledgements</h2> |
| 26 | + <ul> |
| 27 | + <li> |
| 28 | + Special thanks to <b>treadmill</b> (<a href="https://www.twitch.tv/tredmil">Twitch</a>) for being with the project since its inception and contributing many hours of testing, idea and project direction discussions. |
| 29 | + </li> |
| 30 | + <li> |
| 31 | + Thanks to <b>Waverly</b> (<a href="https://twitter.com/RogueWaverly">Twitter</a>) for letting me work on this while we were wedding planning, helping with database design, Django API debugging and design, and also coming up with the name! |
| 32 | + </li> |
| 33 | + <li> |
| 34 | + Thanks to <b>zigge</b> for providing high level player insights. |
| 35 | + </li> |
| 36 | + </ul> |
| 37 | + <h2>People you should check out!</h2> |
| 38 | + <ul> |
| 39 | + <li> |
| 40 | + <b>ilovebaskets</b> <a href="https://www.twitch.tv/ilovebaskets">https://www.twitch.tv/ilovebaskets</a> |
| 41 | + <ul> |
| 42 | + <li> |
| 43 | + Awesome high level 1v1's with a mix of occasional nomad tgs! |
| 44 | + </li> |
| 45 | + </ul> |
| 46 | + </li> |
| 47 | + <li> |
| 48 | + <b>mangomel_</b> <a href="https://www.twitch.tv/mangomel_">https://www.twitch.tv/mangomel_</a> |
| 49 | + <ul> |
| 50 | + <li> |
| 51 | + Chill 1v1 stream with a fun positive atmosphere! |
| 52 | + </li> |
| 53 | + </ul> |
| 54 | + </li> |
| 55 | + <li> |
| 56 | + <b>Vaurion</b> <a href="https://www.twitch.tv/vaurion">https://www.twitch.tv/vaurion</a> |
| 57 | + <ul> |
| 58 | + <li> |
| 59 | + 1v1 streams with just the right amount of tilt! |
| 60 | + </li> |
| 61 | + </ul> |
| 62 | + </li> |
| 63 | + </ul> |
| 64 | + <p className='copyright-text'> |
| 65 | + Age of Empires II DE © Microsoft Corporation. AoEPulse.com was created under Microsoft's <a href="https://www.xbox.com/en-GB/developers/rules">"Game Content Usage Rules"</a> using assets from Age of Empires II DE, and it is not endorsed by or affiliated with Microsoft. |
| 66 | + </p> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | +); |
| 70 | + |
| 71 | +export default About; |
0 commit comments