DavMelchi commited on
Commit
9c2743d
·
1 Parent(s): ad021df

Adding page config with versionning

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -1,5 +1,16 @@
1
  import streamlit as st
2
 
 
 
 
 
 
 
 
 
 
 
 
3
  pages = {
4
  "Apps": [
5
  st.Page("apps/database_page.py", title="Generate Databases"),
 
1
  import streamlit as st
2
 
3
+ st.set_page_config(
4
+ page_title="NPO DB Query",
5
+ page_icon="💻",
6
+ layout="centered",
7
+ initial_sidebar_state="expanded",
8
+ menu_items={
9
+ "About": "**📡 NPO DB Query v0.1**",
10
+ },
11
+ )
12
+
13
+
14
  pages = {
15
  "Apps": [
16
  st.Page("apps/database_page.py", title="Generate Databases"),