liyaoshi commited on
Commit
37bde17
·
verified ·
1 Parent(s): fb87c12

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -3
app.py CHANGED
@@ -1,5 +1,12 @@
1
  import streamlit as st
2
- import streamlit.components.v1 as components
3
 
4
- # embed streamlit docs in a streamlit app
5
- components.iframe("https://whisperflow.streamlit.app/", height=500)
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
 
2
 
3
+
4
+
5
+ st.title("🦜 WhisperFlow")
6
+ about = """
7
+ The lightning-fast, AI-powered audio and video transcription solution that will revolutionize your content management workflow.
8
+ """
9
+ st.markdown(about)
10
+
11
+ st.link_button("Try WhisperFlow now!", "https://whisperflow.streamlit.app/")
12
+