Spaces:
Sleeping
Sleeping
File size: 885 Bytes
733fcd8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# layout.py
import streamlit as st
def set_custom_page_config():
st.set_page_config(
page_title="Smart Kitchen Assistant",
layout="wide",
initial_sidebar_state="expanded"
)
def render_header():
st.markdown("""
<div class="project-header">
<h1>Smart Kitchen Assistant</h1>
<p>CSE555 Final Project — Group 5: Saksham & Ahmed</p>
</div>
""", unsafe_allow_html=True)
def render_footer():
st.markdown("""
<div class="footer">
<p>Made with ❤️ by Saksham & Ahmed | CSE555 @ UB</p>
</div>
""", unsafe_allow_html=True)
def render_layout(content_function):
set_custom_page_config()
with open("assets/css/styles.css") as f:
st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
render_header()
content_function()
render_footer()
|