From 79d43415882cbee144b2292af171f66a9b1495fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Nicolas?= Date: Thu, 20 Jun 2019 15:53:28 +0200 Subject: [PATCH] Add logo --- demo/index.html | 25 +++++---- demo/styles/presented_by_qedit.svg | 87 ++++++++++++++++++++++++++++++ demo/webpack.config.js | 2 +- 3 files changed, 103 insertions(+), 11 deletions(-) create mode 100644 demo/styles/presented_by_qedit.svg diff --git a/demo/index.html b/demo/index.html index b5de20e..341e0dc 100644 --- a/demo/index.html +++ b/demo/index.html @@ -34,8 +34,17 @@ -
-
+ + QEDIT + + +
+

ZkInterface:
ZoKrates ➞ Bulletproofs

ZkInterface @@ -54,18 +63,14 @@

ZkInterface:
ZoKrates ➞ Bull code of this demo to get started with your own zero-knowledge application.

-

- This effort is presented by the - QEDIT team. -

-
-
+
+

WebAssembly Modules

The modules compile and run independently.
@@ -111,8 +116,8 @@

Bulletproofs.wasm

-
-
+
+

ZkInterface messages

There are three types of messages: diff --git a/demo/styles/presented_by_qedit.svg b/demo/styles/presented_by_qedit.svg new file mode 100644 index 0000000..c2bc773 --- /dev/null +++ b/demo/styles/presented_by_qedit.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/demo/webpack.config.js b/demo/webpack.config.js index 004a33c..cf714e4 100644 --- a/demo/webpack.config.js +++ b/demo/webpack.config.js @@ -9,6 +9,6 @@ module.exports = { }, mode: "development", plugins: [ - new CopyWebpackPlugin(['index.html', "node_modules/bootstrap/dist/css/bootstrap.min.css", "styles/index.css"]) + new CopyWebpackPlugin(['index.html', "node_modules/bootstrap/dist/css/bootstrap.min.css", "styles/index.css", "styles/presented_by_qedit.svg"]) ], };