File size: 1,857 Bytes
b5734ec
08af828
b5734ec
08af828
 
 
 
 
 
 
 
 
 
 
 
0a9aa5b
08af828
b5734ec
08af828
 
 
 
 
 
 
 
 
29b864c
08af828
 
 
 
 
 
 
 
 
f80ff0a
 
 
 
0a9aa5b
 
08af828
0a9aa5b
08af828
29b864c
0a9aa5b
 
 
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
import streamlit as st
from streamlit_extras.switch_page_button import switch_page

# Custom styles
st.markdown(
    """
    <style>
        .stApp {
            background-color: skyblue;
        }
    </style>
    """,
    unsafe_allow_html=True,
)

# App Header
st.markdown("<h1 style='text-align: center; color: red;'>๐Ÿ Cric Metrics - AI-Powered Cricket Insights ๐Ÿ</h1>", unsafe_allow_html=True)

# Cricket Information
st.markdown("<h2 style='color: darkorange;'>Cricket - The Gentlemanโ€™s Game ๐Ÿ†</h2>", unsafe_allow_html=True)
st.markdown(
    "<p style='font-size: 16px; color: black; font-style: italic;'>"
    "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."
    "</p>",
    unsafe_allow_html=True
)

# About Cric Metrics
st.markdown("<h2 style='color: blue;'>What is Cric Metrics? ๐Ÿ“Š</h2>", unsafe_allow_html=True)
st.markdown(
    "<p style='font-size: 16px; color: black; font-style: italic;'>"
    "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."
    "</p>",
    unsafe_allow_html=True
)

# Player Information Button
if st.button("๐Ÿ“Š Player Information"):
    switch_page("player_info")  # This navigates to pages/player_info.py

# Author Section
st.markdown("<h2 style='color: green;'>About the Author ๐Ÿ‘จโ€๐Ÿ’ป</h2>", unsafe_allow_html=True)
st.markdown(
    "<p style='font-size: 16px; color: black; font-style: italic;'>"
    "<b>Sai Kalyan Satwik</b>"
    "</p>",
    unsafe_allow_html=True
)