import streamlit as st
from PIL import Image
from utils.streamlit_utils import *
button_style = """
"""
st.markdown(f"
Tech Poets Society
", unsafe_allow_html=True)
st.markdown(button_style, unsafe_allow_html=True)
comedy_of_errors = Image.open('images/comedy.jpg')
st.image(comedy_of_errors)
c1,c2,c3,c4,c5, c6 = st.columns(6)
if c3.button("The Comedy of Errors"):
nav_page("comedy_of_errors")
image = Image.open('images/father.jpg')
st.image(image)
d1, d2, d3, d4, d5, d6 = st.columns(6)
if d3.button("Father's Day"):
nav_page("fathers_day")