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
- ⚡ Real-time AI gesture recognition
- 🧠 Optimized for Russian Sign Language
- 🖥️ Lightweight and browser-based interface
- 🌍 Promoting accessibility and inclusive communication
""", unsafe_allow_html=True)
# --- How it works ---
st.markdown("""
🛠 How it works
- Camera captures hand gestures
- Frame is processed via ONNX deep learning model
- Text prediction appears instantly on screen
""", unsafe_allow_html=True)
# --- Contact block ---
st.markdown("""
""", unsafe_allow_html=True)