Ashar086 commited on
Commit
00552ef
·
verified ·
1 Parent(s): a561dd7

Create components/home.py

Browse files
Files changed (1) hide show
  1. components/home.py +32 -0
components/home.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ def show_home():
4
+ st.title("Welcome to MyVoice AI")
5
+ st.write("""
6
+ MyVoice AI is a cutting-edge platform offering innovative voice cloning and speech restoration solutions.
7
+ Our technology allows you to:
8
+
9
+ - Recreate lifelike voices of loved ones
10
+ - Restore speech for those with impairments
11
+ - Interact with AI-generated historical personalities
12
+
13
+ Explore our features and experience the future of voice technology!
14
+ """)
15
+
16
+ st.subheader("How it works")
17
+ col1, col2, col3 = st.columns(3)
18
+
19
+ with col1:
20
+ st.markdown("### 1. Voice Cloning")
21
+ st.image("https://via.placeholder.com/150", caption="Upload Samples")
22
+ st.write("Upload voice samples and define personality traits.")
23
+
24
+ with col2:
25
+ st.markdown("### 2. AI Processing")
26
+ st.image("https://via.placeholder.com/150", caption="AI Magic")
27
+ st.write("Our advanced AI models process the data.")
28
+
29
+ with col3:
30
+ st.markdown("### 3. Lifelike Results")
31
+ st.image("https://via.placeholder.com/150", caption="Enjoy Results")
32
+ st.write("Experience emotionally engaging conversations.")