From 9f86c6fa99bda96f3c6df2b16c0ab0c8dd9d433a Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Mon, 14 Mar 2022 21:03:50 +0100 Subject: [PATCH] [mirotalk] - add about - presentation --- README.md | 4 + app/src/server.js | 6 ++ public/view/404.html | 7 +- public/view/about.html | 169 ++++++++++++++++++++++++++++++++++++ public/view/landing.html | 5 +- public/view/newcall.html | 7 +- public/view/permission.html | 7 +- public/view/privacy.html | 7 +- 8 files changed, 203 insertions(+), 9 deletions(-) create mode 100755 public/view/about.html diff --git a/README.md b/README.md index 36227238..a191d75d 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,10 @@ Open the app with the following **supported browsers** and many more. - Direct `peer-to-peer` connection ensures the lowest latency thanks to `WebRTC` - Supports [REST API](app/api/README.md) (Application Programming Interface) +## Presentation + +https://www.canva.com/design/DAE693uLOIU/view + ## Demo - `Open` https://mirotalk.up.railway.app/newcall or https://mirotalk.herokuapp.com/newcall diff --git a/app/src/server.js b/app/src/server.js index 508cb0a2..800032ed 100755 --- a/app/src/server.js +++ b/app/src/server.js @@ -102,6 +102,7 @@ const dir = { }; // html views const view = { + about: path.join(__dirname, '../../', 'public/view/about.html'), client: path.join(__dirname, '../../', 'public/view/client.html'), landing: path.join(__dirname, '../../', 'public/view/landing.html'), newCall: path.join(__dirname, '../../', 'public/view/newcall.html'), @@ -142,6 +143,11 @@ app.get(['/'], (req, res) => { res.sendFile(view.landing); }); +// mirotalk about +app.get(['/about'], (req, res) => { + res.sendFile(view.about); +}); + // set new room name and join app.get(['/newcall'], (req, res) => { res.sendFile(view.newCall); diff --git a/public/view/404.html b/public/view/404.html index 6c4814df..ef8c6a61 100644 --- a/public/view/404.html +++ b/public/view/404.html @@ -16,7 +16,7 @@ - MiroTalk ~ 404 Page not found. + MiroTalk - 404 Page not found. @@ -167,12 +167,15 @@