geeksiddhant commited on
Commit
dd39d84
·
verified ·
1 Parent(s): 131475a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
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
+ """)