From 5bf4b8e134b485d47a461d6eaab284d50cec0ef3 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 3 Aug 2019 14:51:45 -0400 Subject: Favicons, updated homepage and more stuff --- app.js | 4 +-- public/css/style.css | 4 +++ public/ico/android-chrome-192x192.png | Bin 0 -> 10105 bytes public/ico/android-chrome-512x512.png | Bin 0 -> 30671 bytes public/ico/apple-touch-icon.png | Bin 0 -> 9520 bytes public/ico/browserconfig.xml | 9 ++++++ public/ico/favicon-16x16.png | Bin 0 -> 1015 bytes public/ico/favicon-32x32.png | Bin 0 -> 1818 bytes public/ico/favicon.ico | Bin 0 -> 15086 bytes public/ico/mstile-150x150.png | Bin 0 -> 7000 bytes public/ico/safari-pinned-tab.svg | 24 ++++++++++++++ public/ico/site.webmanifest | 19 +++++++++++ public/img/ALP.png | Bin 0 -> 48763 bytes public/img/file-code-solid.svg | 59 ++++++++++++++++++++++++++++++++++ public/img/users-solid.svg | 59 ++++++++++++++++++++++++++++++++++ public/img/video-solid.svg | 59 ++++++++++++++++++++++++++++++++++ views/about.ejs | 2 +- views/includes/footer.ejs | 2 +- views/includes/header.ejs | 11 +++++++ views/includes/navbar.ejs | 6 ++-- views/index.ejs | 43 +++++++++++++++++++++++++ 21 files changed, 295 insertions(+), 6 deletions(-) create mode 100644 public/ico/android-chrome-192x192.png create mode 100644 public/ico/android-chrome-512x512.png create mode 100644 public/ico/apple-touch-icon.png create mode 100644 public/ico/browserconfig.xml create mode 100644 public/ico/favicon-16x16.png create mode 100644 public/ico/favicon-32x32.png create mode 100644 public/ico/favicon.ico create mode 100644 public/ico/mstile-150x150.png create mode 100644 public/ico/safari-pinned-tab.svg create mode 100644 public/ico/site.webmanifest create mode 100755 public/img/ALP.png create mode 100755 public/img/file-code-solid.svg create mode 100755 public/img/users-solid.svg create mode 100755 public/img/video-solid.svg diff --git a/app.js b/app.js index 64c18dc..34b5587 100644 --- a/app.js +++ b/app.js @@ -50,7 +50,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(); @@ -81,6 +81,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/public/css/style.css b/public/css/style.css index 410907a..19f7573 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -3,3 +3,7 @@ body { background-color: #212121; color: #ffffff; } + +.svg-white { + fill:#ffffff +} \ No newline at end of file diff --git a/public/ico/android-chrome-192x192.png b/public/ico/android-chrome-192x192.png new file mode 100644 index 0000000..be387fe Binary files /dev/null and b/public/ico/android-chrome-192x192.png differ diff --git a/public/ico/android-chrome-512x512.png b/public/ico/android-chrome-512x512.png new file mode 100644 index 0000000..62ff907 Binary files /dev/null and b/public/ico/android-chrome-512x512.png differ diff --git a/public/ico/apple-touch-icon.png b/public/ico/apple-touch-icon.png new file mode 100644 index 0000000..adbc0ca Binary files /dev/null and b/public/ico/apple-touch-icon.png differ diff --git a/public/ico/browserconfig.xml b/public/ico/browserconfig.xml new file mode 100644 index 0000000..03525c6 --- /dev/null +++ b/public/ico/browserconfig.xml @@ -0,0 +1,9 @@ + + + + + + #da532c + + + diff --git a/public/ico/favicon-16x16.png b/public/ico/favicon-16x16.png new file mode 100644 index 0000000..3f6df54 Binary files /dev/null and b/public/ico/favicon-16x16.png differ diff --git a/public/ico/favicon-32x32.png b/public/ico/favicon-32x32.png new file mode 100644 index 0000000..d58719c Binary files /dev/null and b/public/ico/favicon-32x32.png differ diff --git a/public/ico/favicon.ico b/public/ico/favicon.ico new file mode 100644 index 0000000..f4b980b Binary files /dev/null and b/public/ico/favicon.ico differ diff --git a/public/ico/mstile-150x150.png b/public/ico/mstile-150x150.png new file mode 100644 index 0000000..48fcfe6 Binary files /dev/null and b/public/ico/mstile-150x150.png differ diff --git a/public/ico/safari-pinned-tab.svg b/public/ico/safari-pinned-tab.svg new file mode 100644 index 0000000..6c8021f --- /dev/null +++ b/public/ico/safari-pinned-tab.svg @@ -0,0 +1,24 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + diff --git a/public/ico/site.webmanifest b/public/ico/site.webmanifest new file mode 100644 index 0000000..9b5b90d --- /dev/null +++ b/public/ico/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "", + "short_name": "", + "icons": [ + { + "src": "/ico/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/ico/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/public/img/ALP.png b/public/img/ALP.png new file mode 100755 index 0000000..6c66d64 Binary files /dev/null and b/public/img/ALP.png differ diff --git a/public/img/file-code-solid.svg b/public/img/file-code-solid.svg new file mode 100755 index 0000000..c0c0e27 --- /dev/null +++ b/public/img/file-code-solid.svg @@ -0,0 +1,59 @@ + + diff --git a/public/img/users-solid.svg b/public/img/users-solid.svg new file mode 100755 index 0000000..2f6c21a --- /dev/null +++ b/public/img/users-solid.svg @@ -0,0 +1,59 @@ + + diff --git a/public/img/video-solid.svg b/public/img/video-solid.svg new file mode 100755 index 0000000..8556b7a --- /dev/null +++ b/public/img/video-solid.svg @@ -0,0 +1,59 @@ + + diff --git a/views/about.ejs b/views/about.ejs index 452cd82..e693410 100644 --- a/views/about.ejs +++ b/views/about.ejs @@ -18,7 +18,7 @@

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. In late 2018, AleeCorp merged with Universe and some project merged but due to a community conflict during - October in that year, Universe and AleeCorp splited. In 2019 however, AleeCorp renamed to Alee Productions + October in that year, Universe and AleeCorp splited. In 2019 however, AleeCorp got renamed to Alee Productions just to make the company more professional.

Team

diff --git a/views/includes/footer.ejs b/views/includes/footer.ejs index 50e53ec..dd10125 100644 --- a/views/includes/footer.ejs +++ b/views/includes/footer.ejs @@ -1,5 +1,5 @@
- +
diff --git a/views/includes/header.ejs b/views/includes/header.ejs index 9e26117..d0632ac 100644 --- a/views/includes/header.ejs +++ b/views/includes/header.ejs @@ -1,3 +1,14 @@ + + + + + + + + + + + diff --git a/views/includes/navbar.ejs b/views/includes/navbar.ejs index ed2e826..b8d3ed5 100644 --- a/views/includes/navbar.ejs +++ b/views/includes/navbar.ejs @@ -1,11 +1,13 @@