import streamlit as st from PIL import Image import numpy as np # Page config st.set_page_config( page_title="Sign Language Project", page_icon="🤖", layout="wide", initial_sidebar_state="expanded" ) # --- Custom Style --- st.markdown(""" """, unsafe_allow_html=True) # --- Hero Section --- st.markdown("""

Sign Language Project

AI-powered Sign Language App

""", unsafe_allow_html=True) # --- Features --- st.markdown("""

✨ Key Features

""", unsafe_allow_html=True) # --- How it works --- st.markdown("""

🛠 How it works

  1. Camera captures hand gestures
  2. Frame is processed via ONNX deep learning model
  3. Text prediction appears instantly on screen
""", unsafe_allow_html=True) # --- Contact block --- st.markdown("""

📬 Let's collaborate!

For demos, partnerships, or research opportunities:

Email: osheina9@gmail.com

""", unsafe_allow_html=True)