Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -33,6 +33,35 @@ def main():
|
|
33 |
|
34 |
# Bus Name Search Section
|
35 |
st.header("Search Bus Name")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
# Add a placeholder as the default option for the selectbox
|
38 |
bus_name = st.selectbox(
|
|
|
33 |
|
34 |
# Bus Name Search Section
|
35 |
st.header("Search Bus Name")
|
36 |
+
|
37 |
+
# Instructions in the sidebar
|
38 |
+
st.sidebar.title("Instructions")
|
39 |
+
st.sidebar.write(
|
40 |
+
"""
|
41 |
+
**Welcome to the Dhaka Local Bus Route Finder!** 🚌
|
42 |
+
|
43 |
+
You can use this app to:
|
44 |
+
1. **Search Bus Routes by Bus Name**: Select a bus from the dropdown to see its route.
|
45 |
+
2. **Search Buses by Location**: Enter a location (e.g., Gabtoli, Mirpur) to find buses passing through it.
|
46 |
+
|
47 |
+
This app provides information about local bus routes in Dhaka city.
|
48 |
+
"""
|
49 |
+
)
|
50 |
+
|
51 |
+
st.sidebar.markdown("""
|
52 |
+
## Contact
|
53 |
+
|
54 |
+
For any questions or issues, please contact:
|
55 |
+
|
56 |
+
- **Email**: [[email protected]](mailto:[email protected])
|
57 |
+
- **GitHub**: [Click here to access the Github Profile](https://github.com/shukdevtroy)
|
58 |
+
- **WhatsApp**: [Click here to chat](https://wa.me/+8801719296601)
|
59 |
+
- **HuggingFace Profile**: [Click here to access the HuggingFace Profile](https://huggingface.co/shukdevdatta123)
|
60 |
+
""")
|
61 |
+
|
62 |
+
st.sidebar.markdown("""
|
63 |
+
### Courtesy: [Dhaka Bus Route](https://dhakabusroute.com/)
|
64 |
+
""")
|
65 |
|
66 |
# Add a placeholder as the default option for the selectbox
|
67 |
bus_name = st.selectbox(
|