MIT / components /home.py
Ashar086's picture
Create components/home.py
00552ef verified
import streamlit as st
def show_home():
st.title("Welcome to MyVoice AI")
st.write("""
MyVoice AI is a cutting-edge platform offering innovative voice cloning and speech restoration solutions.
Our technology allows you to:
- Recreate lifelike voices of loved ones
- Restore speech for those with impairments
- Interact with AI-generated historical personalities
Explore our features and experience the future of voice technology!
""")
st.subheader("How it works")
col1, col2, col3 = st.columns(3)
with col1:
st.markdown("### 1. Voice Cloning")
st.image("https://via.placeholder.com/150", caption="Upload Samples")
st.write("Upload voice samples and define personality traits.")
with col2:
st.markdown("### 2. AI Processing")
st.image("https://via.placeholder.com/150", caption="AI Magic")
st.write("Our advanced AI models process the data.")
with col3:
st.markdown("### 3. Lifelike Results")
st.image("https://via.placeholder.com/150", caption="Enjoy Results")
st.write("Experience emotionally engaging conversations.")