import streamlit as st from streamlit_extras.switch_page_button import switch_page # Custom styles st.markdown( """ """, unsafe_allow_html=True, ) # App Header 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") # This navigates to pages/player_info.py # Author Section st.markdown("" "Sai Kalyan Satwik is a data science aspirant with strong skills in Python, Exploratory Data Analysis (EDA)." "
", unsafe_allow_html=True )