File size: 843 Bytes
a7e7f7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8ae5987
 
 
 
a7e7f7a
 
 
 
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
import streamlit as st


# About page
def about_page():
    style_for_page = """
    <style>
    div.css-nahz7x.e16nr0p34>p {
        font-family: Poppins, sans-serif;
        font-size: 1.07rem;
    }
    </style>
    """
    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()