Spaces:
Sleeping
Sleeping
import streamlit as st | |
# Title | |
st.title("Neurodiverse AI Tools") | |
st.write("Welcome to Neurodiverse Educational Testing (N.E.T.)!") | |
# Introduction | |
st.write(""" | |
This app provides AI-powered assessments for neurodiverse conditions such as: | |
- Autism | |
- Dyslexia | |
- ADHD | |
- Dyscalculia | |
- Dysgraphia | |
""") | |
# Interactive Element | |
x = st.slider('Select a value') | |
st.write(f"{x} squared is {x * x}") | |
# Additional Information | |
st.write("Stay tuned for more advanced features!") | |