Spaces:
Build error
Build error
Upload Dashboard.py
Browse files- Dashboard.py +21 -0
Dashboard.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.set_page_config(
|
| 4 |
+
page_title="J.A.RV.I.S.",
|
| 5 |
+
page_icon="",
|
| 6 |
+
)
|
| 7 |
+
custom_icon_url = "https://example.com/path/to/icon.png"
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
st.markdown("<h1 style='text-align: center; color: white;'>Explore the power of AI</h1>", unsafe_allow_html=True)
|
| 11 |
+
st.markdown("<h5 style='text-align: center; color: white; '>with J.A.R.V.I.S.</h5>", unsafe_allow_html=True)
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
st.markdown("<p style='text-align: center; color: violet; '>Quick Links</p>", unsafe_allow_html=True)
|
| 15 |
+
|
| 16 |
+
|
| 17 |
+
st.page_link("pages/AI Search.py", label="AI Search", icon="π", use_container_width=True)
|
| 18 |
+
st.page_link("pages/Chat With PDF.py", label="Chat With PDF", icon="π", use_container_width=True)
|
| 19 |
+
st.page_link("pages/Image Generator.py", label="Image Generator", icon="π", use_container_width=True)
|
| 20 |
+
st.page_link("pages/Multimodal Chat.py", label="Multimodal Chat", icon="π€", use_container_width=True)
|
| 21 |
+
st.page_link("pages/Website QnA.py", label="Website QnA", icon="π", use_container_width=True)
|