File size: 930 Bytes
8b431f1
 
 
 
 
 
 
 
 
 
2d4be4b
8b431f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ac6f601
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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")