import streamlit as st # About page def about_page(): style_for_page = """ """ st.markdown(style_for_page, unsafe_allow_html=True) st.title("About") st.divider() st.subheader( "This is a content based recommender system that recommends animes similar to the animes you like." ) st.write("\n") st.write("\n") st.write( "This Anime Recommender App is made by [Harshit Singh](https://Harsh502s.github.io/). :ninja:" ) st.write("\n") st.write( "Theme of this app is inspired by Mist Hashira Muichiro Tokito from [Demon Slayer](https://aniwatch.to/demon-slayer-kimetsu-no-yaiba-47)." ) if __name__ == "__main__": about_page()