Spaces:
Sleeping
Sleeping
File size: 1,329 Bytes
a8cc789 937fbb9 a8cc789 | 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 | import streamlit as st
# Page Configuration
st.set_page_config(
page_title="Student Success Hub",
page_icon="๐",
layout="wide",
initial_sidebar_state="expanded"
)
st.title("๐ Welcome to the Student Success Hub!")
st.sidebar.success("Select a tool from the sidebar.")
st.markdown(
"""
This application is designed to assist students with various academic and productivity tasks.
Navigate through the tools using the sidebar on the left.
**Our Mission:**
To provide a suite of easy-to-use and effective tools that help you study smarter,
stay organized, and achieve your academic goals.
**What's Inside?**
Explore the sidebar to discover tools for:
* Note-taking
* Task management
* Study aids
* And more AI-powered features coming soon!
We are continuously working on adding new features.
If you have any suggestions or feedback, we'd love to hear from you!
"""
)
st.subheader("Getting Started")
st.info(
"""
1. **Explore:** Check out the tools available in the sidebar.
2. **Utilize:** Integrate these tools into your daily study routine.
3. **Feedback:** Let us know how we can make this platform even better for you!
"""
)
st.caption("Happy studying! Let's make learning more productive and fun. โจ")
|