import streamlit as st import pandas as pd # πŸ”Ή App Title st.markdown( "

🏏 Welcome to Cricket World – Explore Player Stats!

", unsafe_allow_html=True ) # πŸ”Ή Short Introduction st.markdown( """

You are one-stop place to discover cricket magic! πŸ†

Dive into the exciting world of cricket with us! Whether you're a passionate fan or just getting started, this app brings player statistics, records, and insights right at your fingertips.

""", unsafe_allow_html=True ) # πŸ”Ή About Cricket st.markdown( """

A Quick Look at Cricket

Cricket is more than just a sport β€” it’s an emotion that connects millions. Played between two teams of eleven players each, cricket has different formats loved by fans across the world:

From powerful sixes to magical bowling spells, cricket never fails to amaze!

""", unsafe_allow_html=True ) # πŸ”Ή About the App st.markdown( """

What's Inside the App?

This app is designed specially for cricket lovers who want easy access to detailed player statistics across formats like Test, ODI, T20, and IPL.

Stay updated and know about your favorite players with one click!

""", unsafe_allow_html=True ) # πŸ”Ή Navigation Button st.markdown( """

Want to explore the status of cricket?

""", unsafe_allow_html=True ) if st.button("View Player Stats"): st.switch_page("pages/1_player_stats.py")