Hemanth Sai Garladinne commited on
Commit
8cccba3
β€’
1 Parent(s): 32169a5

Update mainlayout.py

Browse files
Files changed (1) hide show
  1. frontend/layouts/mainlayout.py +2 -2
frontend/layouts/mainlayout.py CHANGED
@@ -9,7 +9,7 @@ from components import authors, user_greetings, add_logo
9
 
10
  def mainlayout(func: Callable):
11
  def wrapper():
12
- with open("layouts/st_page_layouts.json", "r", encoding="utf-8") as f:
13
  st_page_layouts = json.load(f)
14
 
15
  st.set_page_config(
@@ -19,7 +19,7 @@ def mainlayout(func: Callable):
19
  else "home"
20
  ]
21
  )
22
- add_logo("images/studybotlogo.svg", svg=True)
23
  st.markdown("# Studybot πŸ“š")
24
  user_greetings()
25
  authors()
 
9
 
10
  def mainlayout(func: Callable):
11
  def wrapper():
12
+ with open("frontend/layouts/st_page_layouts.json", "r", encoding="utf-8") as f:
13
  st_page_layouts = json.load(f)
14
 
15
  st.set_page_config(
 
19
  else "home"
20
  ]
21
  )
22
+ add_logo("frontend/images/studybotlogo.svg", svg=True)
23
  st.markdown("# Studybot πŸ“š")
24
  user_greetings()
25
  authors()