Skip to content

Commit

Permalink
Add index page for open-app
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Jun 16, 2023
1 parent 60ea6e1 commit 3b6dfe4
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions index.ipynb
Original file line number Diff line number Diff line change
@@ -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",
"<head>\n",
"</head>\n",
"\n",
"<body>\n",
"\n",
"<div style=\"padding-top: 0px; padding-bottom: 0px; line-height: 140%;\">\n",
" <h3>Welcome to the MarketPlace UC3 app! 👋</h3>\n",
"\n",
" The Use Case 3 (UC3) of MarketPlace\n",
" \n",
" <p style=\"padding-top: 5px; padding-bottom: 5px;\">New users show go prepare tool first to setup computer and code.</p>\n",
" <p style=\"padding-top: 5px; padding-bottom: 5px;\"><em>Happy computing! 🎉</em></p>\n",
"</div>\n",
"\n",
"</body>\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
}

0 comments on commit 3b6dfe4

Please sign in to comment.