nelbarman053's picture
app and caption generator file running and working
e6856f6
raw
history blame
1.42 kB
import streamlit as st
def main():
st.markdown('<div style="display: flex; justify-content: center;"><p style="font-size: 30px; font-weight: bold;">Artwork Caption Generation</p></div>', unsafe_allow_html=True)
col_left, col_right = st.columns(2)
with col_left:
col11, col12 = st.columns(2)
with col11:
st.image(image="assets\drawing.jpeg")
with col12:
st.write("<div style='text-align:right;'>Witness the birth of creativity. Our website breathes life into your artistic visions.</div>", unsafe_allow_html=True)
col21, col22 = st.columns(2)
with col21:
st.write("<div style='text-align:left;'>Delve into the depths of inspiration. Explore our platform to give voice to your masterpiece.</div>", unsafe_allow_html=True)
with col22:
st.image(image="assets\\thinking.jpeg")
col31, col32 = st.columns(2)
with col31:
st.image(image="assets\generate.jpeg")
with col32:
st.write("<div style='text-align:right;'>Crafting the narrative of your creation. Unleash your imagination with our caption generator for artwork.</div>", unsafe_allow_html=True)
with col_right:
st.subheader('How to use')
if st.button(label="Generator", type="primary"):
st.switch_page(page='pages/Caption_Generator.py')
if __name__ == "__main__":
main()