-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.py
38 lines (25 loc) · 855 Bytes
/
Home.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import streamlit as st
import components.layout as layout
import components.login as login
layout.show_layout()
st.write("# PromptOn UI Demo")
login.login()
st.markdown(
"""
This is a rudimentary technical demo.
For access, email [email protected].
* Not all features are exposed.
* API is solid and tested but this UI is not
* If your are in trouble press `r` to Rerun the page (or select it from the top right corner menu)
* UX is not taken into proper consideration
Bottom line:
Create your own UI using PromptOn's Python or Node SDK
"""
)
st.divider()
col1, col2 = st.columns([10, 2])
col2.write("Design :lemon: Prize - 2023")
repo_link = """
[ github.com/PromptOn/prompton ](https://github.com/PromptOn/prompton)
"""
col1.markdown(repo_link, unsafe_allow_html=True)