diff options
| author | cylexVEVO <28271391+cylexVEVO@users.noreply.github.com> | 2019-11-30 13:43:48 -0500 |
|---|---|---|
| committer | cylexVEVO <28271391+cylexVEVO@users.noreply.github.com> | 2019-11-30 13:43:48 -0500 |
| commit | 4ef46f417a2fad9871787eaeb1e4778e8c617212 (patch) | |
| tree | 9d09e38edf40027a6c668d9de8a2eaac5d9b9c8b /pages/projects.js | |
| parent | 3b47e9af235faa76242c7d4e78ab189901b0517b (diff) | |
| download | alp-website-4ef46f417a2fad9871787eaeb1e4778e8c617212.tar.gz alp-website-4ef46f417a2fad9871787eaeb1e4778e8c617212.tar.bz2 alp-website-4ef46f417a2fad9871787eaeb1e4778e8c617212.zip | |
Cleaned up code and fixed some grammar
Diffstat (limited to 'pages/projects.js')
| -rw-r--r-- | pages/projects.js | 81 |
1 files changed, 42 insertions, 39 deletions
diff --git a/pages/projects.js b/pages/projects.js index d2a6156..16e7052 100644 --- a/pages/projects.js +++ b/pages/projects.js @@ -17,41 +17,45 @@ */ -import Layout from '../components/Layout'; +import Layout from "../components/Layout"; const Projects = () => ( - <Layout> - <div> - <div className="jumbotron special-color bounceIn white-text"> - <h2 className="display-4">Projects</h2> - <p className="lead">This is the projects that we are currently working on.</p> - </div> - <div className="container"> - <h1 className="mb-5 text-center">Software/Games</h1> - {/* Software Cards */} - <h2 className="m-3 text-center">Current big active projects</h2> - <div className="row d-flex justify-content-center"> - <div className="col-md-5"> - <div className="card elegant-color"> - <div className="card-body"> - <h5 className="card-title">Unicity</h5> - <p className="card-text white-text">A Sims clone written in Unity3D.</p> - <a className="card-link green-text" href="/projects/unicity">Learn more</a> <a className="card-link green-text" href="https://github.com/aleeproductions/Unicity"><i className="fab fa-github"></i> GitHub</a> - </div> - </div> - </div> + <Layout> + <div className="jumbotron special-color bounceIn white-text"> + <h2 className="display-4">Projects</h2> + <p className="lead">These are our current projects.</p> + </div> + <div className="container"> + <h1 className="mb-5 text-center">Software/Games</h1> + {/* Software Cards */} + <h2 className="m-3 text-center">Larger projects</h2> + <div className="row d-flex justify-content-center"> + <div className="col-md-5"> + <div className="card elegant-color"> + <div className="card-body"> + <h5 className="card-title">Unicity</h5> + <p className="card-text white-text">A Sims clone written in Unity3D.</p> + <a className="card-link green-text" href="/projects/unicity">Learn more</a> + <a className="card-link green-text" href="https://github.com/aleeproductions/Unicity"> + <i className="fab fa-github"/> GitHub + </a> + </div> + </div> + </div> - <div className="col-md-5"> - <div className="card elegant-color"> - <div className="card-body"> - <h5 className="card-title">QuantumNet</h5> - <p className="card-text white-text">A computer "hacking" game made in C#.</p> - <a className="card-link green-text" href="https://github.com/aleeproductions/QuantumNet"><i className="fab fa-github"></i> GitHub</a> - </div> - </div> - </div> - </div> - {/* + <div className="col-md-5"> + <div className="card elegant-color"> + <div className="card-body"> + <h5 className="card-title">QuantumNet</h5> + <p className="card-text white-text">A computer "hacking" game made in C#.</p> + <a className="card-link green-text" + href="https://github.com/aleeproductions/QuantumNet"><i + className="fab fa-github"/> GitHub</a> + </div> + </div> + </div> + </div> + {/* <h2 className="m-3">Other software/games we made...</h2> <button className="btn green" action="button" onclick="displayRepos();">Reload Repos</button> <table className="table table-borderless table-dark elegant-color mt-3"> @@ -66,12 +70,12 @@ const Projects = () => ( </tbody> </table> </div> */} - {/* /.Software Cards */} - {/* Disabled for now.... + {/* /.Software Cards */} + {/* Disabled for now.... <h1 className="mt-3 mb-2 text-center">Videos</h1> <ul id="yt-results" className="yt none"></ul> */} - {/* + {/* <script type="text/javascript" data-main="/js/yt-list-videos.js" src="https://requirejs.org/docs/release/2.3.5/minified/require.js"></script> <script> // Code by cylex @@ -108,9 +112,8 @@ const Projects = () => ( xhttp.open("GET", "https://git.alee-productions.xyz/api/v1/users/aleeproductions/repos", true); xhttp.send(); </script> */} - </div> - </div> - </Layout> - ) + </div> + </Layout> +); export default Projects;
\ No newline at end of file |
