diff options
| -rw-r--r-- | app.js | 4 | ||||
| -rw-r--r-- | views/about.ejs | 41 | ||||
| -rw-r--r-- | views/index.ejs | 51 | ||||
| -rw-r--r-- | views/projects.ejs | 2 |
4 files changed, 48 insertions, 50 deletions
@@ -65,7 +65,7 @@ rl.on("line", (input) => { case "exit": async function exitWebsite() { console.log("[i] Closing website..."); - //await Hook.info("Alee Productions Website", "Website is shutting down..."); + await Hook.info("Alee Productions Website", "Website is shutting down..."); process.exit(0); } exitWebsite(); @@ -102,6 +102,6 @@ app.use((req, res) => { }); app.listen(port, () => { - //Hook.success("Alee Productions Website","Website has been loaded!"); + Hook.success("Alee Productions Website","Website has been loaded!"); console.log(`[>] Website listening on port ${port}!`); });
\ No newline at end of file diff --git a/views/about.ejs b/views/about.ejs index 6fee2c4..8fbb2c8 100644 --- a/views/about.ejs +++ b/views/about.ejs @@ -15,6 +15,47 @@ </p> </div> <div class="container"> + <!--Community, Video and Software--> + <!-- If anyone knows how to fix this please tell me thanks -Alee :)--> + <div class="row d-flex justify-content-center"> + <div class="col-sm"> + <div class="view overlay"> + <a href="https://discord.gg/EFhRDqG"> + <img class="text-center" src="/img/users-solid.svg" height=220px> + <div class="mask flex-center rgba-green-strong"> + <p class="white-text">Community</p> + </div> + </a> + </div> + <br> + <p class="text-center">Community</p> + </div> + <div class="col-sm"> + <div class="view overlay"> + <a href="https://www.youtube.com/channel/UC9CIwdleH3m_PV35QqULWzA"> + <img src="/img/video-solid.svg" height=220px> + <div class="mask flex-center rgba-green-strong"> + <p class="white-text">Video</p> + </div> + </a> + </div> + <br> + <p class="text-center">Video</p> + </div> + <div class="col-sm"> + <div class="view overlay"> + <a href="https://github.com/aleeproductions"> + <img src="/img/file-code-solid.svg" height=220px> + <div class="mask flex-center rgba-green-strong"> + <p class="white-text">Software</p> + </div> + </a> + </div> + <br> + <p class="text-center">Software</p> + </div> + </div> + <h1>History</h1> <p>Alee Productions started in 2016. It used to be called "AleeCorp" and used to make just software but over time it started branching to other things like making games and videos. diff --git a/views/index.ejs b/views/index.ejs index 6e4f37d..ba39946 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -9,7 +9,6 @@ <body class="dark"> <% include ./includes/navbar %> <div class="animsition"> - <!--Jumbotron--> <div class="jumbotron special-color bounceIn white-text"> <h2 class="display-4">Hello! Welcome to Alee Productions.</h2> <p class="lead">We are a very small productions company.</p> @@ -17,9 +16,8 @@ <p>If you want to know more about us click the button down below.</p> <a class="btn btn-green btn-lg animsition-link" href="/about" role="button">Learn more</a> </div> - - <div class="container"> - <h2 class="text-center mb-3">Our Products</h2> + <!--Jumbotron--> + <div class="container"> <!--Carousel Wrapper--> <div id="carousel-product" class="carousel slide carousel-slide" data-ride="carousel"> <!--Indicators--> @@ -69,7 +67,6 @@ <a class="btn btn-green btn-lg" href="#" role="button">Learn More</a> </div> </div> - </div> <!--/.Slides--> <!--Controls--> <a class="carousel-control-prev" href="#carousel-product" role="button" data-slide="prev"> @@ -83,49 +80,9 @@ <!--/.Controls--> </div> <!--/.Carousel Wrapper--> - <br> - <!--Community, Video and Software--> - <!-- If anyone knows how to fix this please tell me thanks -Alee :)--> - <div class="row d-flex justify-content-center"> - <div class="col-sm"> - <div class="view overlay"> - <a href="https://discord.gg/EFhRDqG"> - <img class="text-center" src="/img/users-solid.svg" height=220px> - <div class="mask flex-center rgba-green-strong"> - <p class="white-text">Community</p> - </div> - </a> - </div> - <br> - <p class="text-center">Community</p> - </div> - <div class="col-sm"> - <div class="view overlay"> - <a href="https://www.youtube.com/channel/UC9CIwdleH3m_PV35QqULWzA"> - <img src="/img/video-solid.svg" height=220px> - <div class="mask flex-center rgba-green-strong"> - <p class="white-text">Video</p> - </div> - </a> - </div> - <br> - <p class="text-center">Video</p> - </div> - <div class="col-sm"> - <div class="view overlay"> - <a href="https://github.com/aleeproductions"> - <img src="/img/file-code-solid.svg" height=220px> - <div class="mask flex-center rgba-green-strong"> - <p class="white-text">Software</p> - </div> - </a> - </div> - <br> - <p class="text-center">Software</p> - </div> - </div> </div> - <script> + </div> + <script> console.log("Welcome to Alee Productions :)"); </script> <% include ./includes/scripts %> diff --git a/views/projects.ejs b/views/projects.ejs index 498dd4a..9ca65bb 100644 --- a/views/projects.ejs +++ b/views/projects.ejs @@ -23,7 +23,7 @@ <div class="card-body"> <h5 class="card-title">Unicity</h5> <p class="card-text white-text">A Sims clone written in Unity3D.</p> - <a class="card-link green-text" href="https://github.com/aleeproductions/Unicity"><i class="fab fa-github"></i> GitHub</a> + <a class="card-link green-text" href="/projects/unicity">Learn more</a> <a class="card-link green-text" href="https://github.com/aleeproductions/Unicity"><i class="fab fa-github"></i> GitHub</a> </div> </div> </div> |
