From 3b6dfe4622596daca65c0b80c4f895b3bc8ecbbb Mon Sep 17 00:00:00 2001 From: Jusong Yu Date: Fri, 16 Jun 2023 18:47:24 +0000 Subject: [PATCH] Add index page for open-app --- index.ipynb | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 index.ipynb diff --git a/index.ipynb b/index.ipynb new file mode 100644 index 0000000..1caa778 --- /dev/null +++ b/index.ipynb @@ -0,0 +1,46 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from start import get_start_widget\n", + "import ipywidgets as ipw\n", + "\n", + "html_text = \"\"\"\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
\n", + "

Welcome to the MarketPlace UC3 app! 👋

\n", + "\n", + " The Use Case 3 (UC3) of MarketPlace\n", + " \n", + "

New users show go prepare tool first to setup computer and code.

\n", + "

Happy computing! 🎉

\n", + "
\n", + "\n", + "\n", + "\"\"\"\n", + "\n", + "welcome_text = ipw.HTML(html_text)\n", + "display(welcome_text)\n", + "\n", + "start_widget = get_start_widget(\".\", \"\", \"\")\n", + "display(start_widget)" + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +}