Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# frontend/app.py
|
2 |
+
import streamlit as st
|
3 |
+
|
4 |
+
st.set_page_config(
|
5 |
+
page_title="100xEngineers Discovery Platform",
|
6 |
+
layout="centered"
|
7 |
+
)
|
8 |
+
|
9 |
+
st.title("100xEngineers Discovery Platform")
|
10 |
+
|
11 |
+
st.markdown("""
|
12 |
+
Welcome to the 100xEngineers Discovery Platform!
|
13 |
+
Use the pages on the left to navigate through the app:
|
14 |
+
- **🔑 Login**
|
15 |
+
- **✏️ Edit Profile**
|
16 |
+
- **🔍 Search**
|
17 |
+
- **👤 Profile View**
|
18 |
+
""")
|