Skip to content

Commit

Permalink
Frontend
Browse files Browse the repository at this point in the history
Updated home page of the Streamlit app
  • Loading branch information
HemanthSai7 committed Dec 16, 2023
1 parent 931abd0 commit 8787095
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/layouts/mainlayout.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

def mainlayout(func: Callable):
def wrapper():
with open("layouts/st_page_layouts.json", "r", encoding="utf-8") as f:
with open("frontend/layouts/st_page_layouts.json", "r", encoding="utf-8") as f:
st_page_layouts = json.load(f)

st.set_page_config(
Expand All @@ -19,7 +19,7 @@ def wrapper():
else "home"
]
)
add_logo("images/studybotlogo.svg", svg=True)
add_logo("frontend/images/studybotlogo.svg", svg=True)
st.markdown("# Studybot πŸ“š")
user_greetings()
authors()
Expand Down
2 changes: 1 addition & 1 deletion frontend/🏑_Home.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def home():
"<h2 style='text-align: center; color: black;'>Studybot Architecture</h1>",
unsafe_allow_html=True,
)
st.image("images/architecture.png")
st.image("frontend/images/architecture.png")


home()

0 comments on commit 8787095

Please sign in to comment.