import streamlit as st from streamlit_extras.switch_page_button import switch_page # Custom styles st.markdown( """ """, unsafe_allow_html=True, ) # Innomatics Logo at the top st.image("/mnt/data/1.png", use_container_width=True) # App Header st.markdown("

🏏 Cric Metrics - AI-Powered Cricket Insights 🏏

", unsafe_allow_html=True) # Cricket Information st.markdown("

Cricket - The Gentleman’s Game πŸ†

", unsafe_allow_html=True) 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("

What is Cric Metrics? πŸ“Š

", unsafe_allow_html=True) 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("

About the Author πŸ‘¨β€πŸ’»

", unsafe_allow_html=True) st.markdown( "

" "Sai Kalyan Satwik is a seasoned cricket enthusiast and tech entrepreneur with over 10 years of experience. " "He specializes in data science, Python programming, and Exploratory Data Analysis (EDA). πŸπŸ“Š" "

", unsafe_allow_html=True ) # Innomatics Logo at the bottom as well (optional) st.image("/mnt/data/1.png", use_container_width=True)