Spaces:
Runtime error
Runtime error
Hemanth Sai Garladinne
commited on
Commit
·
b5e574b
1
Parent(s):
ecf0277
Update mainlayout.py
Browse files
frontend/layouts/mainlayout.py
CHANGED
|
@@ -9,6 +9,7 @@ def mainlayout(func: Callable):
|
|
| 9 |
with open("frontend/layouts/st_page_layouts.json", "r",encoding='utf-8') as f:
|
| 10 |
st_page_layouts = json.load(f)
|
| 11 |
st.set_page_config(**st_page_layouts[f"{func.__name__}" if func.__name__ in st_page_layouts.keys() else "home"])
|
|
|
|
| 12 |
st.markdown("## :rainbow[Welcome to Techdocs: Where Code Meets Clarity!]🚀")
|
| 13 |
|
| 14 |
user_greetings()
|
|
|
|
| 9 |
with open("frontend/layouts/st_page_layouts.json", "r",encoding='utf-8') as f:
|
| 10 |
st_page_layouts = json.load(f)
|
| 11 |
st.set_page_config(**st_page_layouts[f"{func.__name__}" if func.__name__ in st_page_layouts.keys() else "home"])
|
| 12 |
+
add_logo("frontend/images/techdocslogo.svg",svg=True)
|
| 13 |
st.markdown("## :rainbow[Welcome to Techdocs: Where Code Meets Clarity!]🚀")
|
| 14 |
|
| 15 |
user_greetings()
|