From 8e0d050f4a18d476b430085154c53cee551c440f Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Mon, 14 Mar 2022 20:59:47 +0100 Subject: [PATCH] [mirotalksfu] - add about - presentation --- README.md | 4 + app/src/Server.js | 6 ++ public/view/404.html | 3 + public/view/Room.html | 2 +- public/view/about.html | 156 ++++++++++++++++++++++++++++++++++++ public/view/landing.html | 6 +- public/view/login.html | 6 +- public/view/newroom.html | 6 +- public/view/permission.html | 3 + public/view/privacy.html | 3 + 10 files changed, 191 insertions(+), 4 deletions(-) create mode 100644 public/view/about.html diff --git a/README.md b/README.md index d46a02b..d0c84dc 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,10 @@ Open the app with the following **supported browsers** and many more. --- +## Presentation + +https://www.canva.com/design/DAE693uLOIU/view + ## Quick Start - You will need to have `NodeJS` installed, this project has been tested with Node version [12.X](https://nodejs.org/en/blog/release/v12.22.1/) and [14.X](https://nodejs.org/en/blog/release/v14.17.5/). diff --git a/app/src/Server.js b/app/src/Server.js index 4cd78ea..5f45b97 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -86,6 +86,7 @@ const dir = { // html views const view = { + about: path.join(__dirname, '../../', 'public/view/about.html'), landing: path.join(__dirname, '../../', 'public/view/landing.html'), login: path.join(__dirname, '../../', 'public/view/login.html'), newRoom: path.join(__dirname, '../../', 'public/view/newroom.html'), @@ -205,6 +206,11 @@ app.get(['/privacy'], (req, res) => { res.sendFile(view.privacy); }); +// mirotalk about +app.get(['/about'], (req, res) => { + res.sendFile(view.about); +}); + // #################################################### // API // #################################################### diff --git a/public/view/404.html b/public/view/404.html index 44f6f93..f1defe9 100755 --- a/public/view/404.html +++ b/public/view/404.html @@ -109,6 +109,9 @@