import streamlit as st
st.set_page_config(
page_title="J.A.RV.I.S.",
page_icon="",
layout="centered",
initial_sidebar_state="expanded"
)
custom_icon_url = "https://example.com/path/to/icon.png"
st.markdown("
Explore the power of AI
", unsafe_allow_html=True)
st.markdown("with J.A.R.V.I.S.
", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("🔍 AI Search
", unsafe_allow_html=True)
#st.page_link("pages/AI Search.py", label="", icon="", use_container_width=True)
st.markdown("Use AI to Search the Internet for you
", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("🎨 Image Generator
", unsafe_allow_html=True)
#st.page_link("pages/Image Generator.py", label="", icon="🖌", use_container_width=True)
st.markdown("Generate Images from Text, Image, and much more
", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("🤖 Multimodal Chat
", unsafe_allow_html=True)
#st.page_link("pages/Multimodal Chat.py", label="", icon="", use_container_width=True)
st.markdown("Chat with a Multilingual AI, Ask questions on Images, Ask questions on Documents
", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("📋 Chat With PDF
", unsafe_allow_html=True)
#st.page_link("pages/MultiPDF Chat.py", label="", icon="", use_container_width=True)
st.markdown("Upload Multiple PDFs and Ask Questions
", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("🧠 QuizTube
", unsafe_allow_html=True)
#st.page_link("pages/QuizTube.py", label="", icon="", use_container_width=True)
st.markdown("Generate Quiz from a Youtube Video
", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("🌐 Website QnA
", unsafe_allow_html=True)
#st.page_link("pages/Website QnA.py", label="", icon="", use_container_width=True)
st.markdown("Ask questions about a website
", unsafe_allow_html=True)