import streamlit as st from streamlit_extras.switch_page_button import switch_page # Custom styles st.markdown( """ """, unsafe_allow_html=True, ) # App Header with Logo on the Right Corner st.markdown( """
" "Cricket is one of the most popular sports worldwide, loved by millions. It is played in multiple formats, including Test matches, One Day Internationals (ODIs), and T20s. " "With legendary players, thrilling rivalries, and unforgettable moments, cricket has become more than just a gameβit's an emotion for fans around the globe. ππ₯" "
", unsafe_allow_html=True ) # About Cric Metrics st.markdown("" "Cric Metrics is an advanced cricket analytics platform designed to provide in-depth insights, player comparisons, " "score predictions, and team analysis using AI and machine learning. ππ€" "
", unsafe_allow_html=True ) # Player Information Button if st.button("π Player Information"): st.switch_page("pages/1player_information.py") # Author Section st.markdown("" "Sai Kalyan Satwik is a seasoned cricket enthusiast and tech entrepreneur. " "He specializes in data science, Python programming, and Exploratory Data Analysis (EDA). ππ" "
", unsafe_allow_html=True )