Spaces:
Sleeping
Sleeping
File size: 2,665 Bytes
d7bfcaa dc98936 d7bfcaa dc98936 d7bfcaa 332a5a3 d7bfcaa 1e5c12f d7bfcaa 3183cd1 d7bfcaa c9bfeed |
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
import streamlit as st
import pandas as pd
# πΉ App Title
st.markdown(
"<h1 style='text-align: center; color: red;'>π Welcome to Cricket World β Explore Player Stats!</h1>",
unsafe_allow_html=True
)
# πΉ Short Introduction
st.markdown(
"""
<h3 style='text-align: center; color: green;'>You are one-stop place to discover cricket magic! π</h3>
<p style='text-align: justify;'>
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.
</p>
""",
unsafe_allow_html=True
)
# πΉ About Cricket
st.markdown(
"""
<h3 style='text-align: left; color: blue;'>A Quick Look at Cricket</h3>
<p>
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:
</p>
<ul>
<li><strong>Test Matches:</strong> The traditional and longest form, played over five thrilling days.</li>
<li><strong>One Day Internationals (ODIs):</strong> A 50-overs per side game offering the perfect blend of strategy and excitement.</li>
<li><strong>T20 Matches:</strong> High-energy 20-over matches, packed with big hits and quick action.</li>
<li><strong>IPL:</strong> The Indian Premier League, where cricket meets entertainment, bringing global stars together.</li>
</ul>
<p>From powerful sixes to magical bowling spells, cricket never fails to amaze!</p>
""",
unsafe_allow_html=True
)
# πΉ About the App
st.markdown(
"""
<h3 style='text-align: left; color: blue;'>What's Inside the App?</h3>
<p style='text-align: justify;'>
This app is designed specially for cricket lovers who want easy access to detailed player statistics across formats like Test, ODI, T20, and IPL.
</p>
<ul>
<li><strong>View Player Stats:</strong> Find runs scored, wickets taken, and matches played.</li>
<li><strong>Compare Performances:</strong> See how players perform across different formats.</li>
<li><strong>Simple and Neat Interface:</strong> No messy graphs β just clean dropdowns and easy-to-read numbers!</li>
</ul>
<p>Stay updated and know about your favorite players with one click!</p>
""",
unsafe_allow_html=True
)
# πΉ Navigation Button
st.markdown(
"""
<h4 style='text-align: left; color: green;'>Want to explore the status of cricket?</h4>
""",
unsafe_allow_html=True
)
if st.button("View Player Stats"):
st.switch_page("pages/1_player_stats.py")
|