From 710e391c70afe82a6c41a6be6817cdc69ecf3fe5 Mon Sep 17 00:00:00 2001 From: Hemanth Sai Garladinne <73033596+HemanthSai7@users.noreply.github.com> Date: Mon, 16 Oct 2023 18:30:17 +0530 Subject: [PATCH] Update mainlayout.py --- frontend/layouts/mainlayout.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/layouts/mainlayout.py b/frontend/layouts/mainlayout.py index 1abd954..103a534 100644 --- a/frontend/layouts/mainlayout.py +++ b/frontend/layouts/mainlayout.py @@ -9,6 +9,7 @@ def mainlayout(func: Callable): with open("frontend/layouts/st_page_layouts.json", "r",encoding='utf-8') as f: st_page_layouts = json.load(f) st.set_page_config(**st_page_layouts[f"{func.__name__}" if func.__name__ in st_page_layouts.keys() else "home"]) + add_logo("frontend/images/techdocslogo.svg",svg=True) st.markdown("## :rainbow[Welcome to Techdocs: Where Code Meets Clarity!]🚀") user_greetings()