my-ai-albums / app.py
Kvikontent's picture
Update app.py
2d4be4b verified
raw
history blame
930 Bytes
import streamlit as st
st.title("KVI Kontent AI Albums")
st.write("AI tools in groups")
cols = st.columns(3)
col1, col2, col3 = cols
col2.image("images/x.png")
col1.header("X")
col1.write("Alum with powerful smart ai's")
b1 = col1.button("Learn More")
col2.image("images/n.jpg")
col2.header("N")
col2.write("AI tools made with API")
b2 = col2.button("Learn More")
col3.image("images/divide.png")
col3.header("Divide")
col3.write("Math AI Tools")
b3 = col3.button("Learn More")
if b1:
cont1 = st.container(height=700)
cont1.image("images/x.png")
cont1.header("X")
ccol1 = st.columns(3)
cool1, cool2, cool3 = ccol1
cool1.header("KVIImager 2.0")
cool1.write("Try out now:")
ttry11 = cool1.button("Try")
cool2.header("Remove BG")
cool2.write("Try out now:")
ttry21 = cool2.button("Try")
cool3.header("Prompt Generator")
cool3.write("Try out now:")
ttry31 = cool3.button("Try")