import streamlit as st def main(): st.markdown('

Artwork Caption Generation

', 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("
Witness the birth of creativity. Our website breathes life into your artistic visions.
", unsafe_allow_html=True) col21, col22 = st.columns(2) with col21: st.write("
Delve into the depths of inspiration. Explore our platform to give voice to your masterpiece.
", 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("
Crafting the narrative of your creation. Unleash your imagination with our caption generator for artwork.
", 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()