Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#171 Intro #214

Merged
merged 7 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jarvis.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ def application():
from src.utils.functions import load_functions
app = st.navigation(pages=load_functions())

app.run()
app.run()
Binary file added assets/intro.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/apps/public/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

def home():
st.title("Welcome to Jarvis - Your Virtual AI Assistant!")
st.image('assets/image.gif', caption='Empower Your Digital Life with Jarvis', use_column_width=True)
st.image('assets/intro.gif', caption='Empower Your Digital Life with Jarvis', use_column_width=True)

st.markdown("""
st.markdown("""
## What is Jarvis?
**Jarvis** is a powerful Python-based AI assistant designed to streamline your daily tasks through simple voice commands. Whether you're navigating the web, managing your media, or automating routine processes, Jarvis is here to help.
""")
Expand All @@ -19,8 +19,8 @@ def home():
- **Email Management**: Send and receive emails directly from the assistant.
""")

st.markdown("## See Jarvis in Action")
st.video('https://youtu.be/kjIH9qo8dX4')
with st.expander("## See Jarvis in Action"):
st.video(f'https://www.youtube.com/watch?v={st.secrets["YOUTUBE_VIDEO_ID"]}', start_time=0)

st.markdown("""
## Learn More and Get Started
Expand Down