-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.py
33 lines (18 loc) · 810 Bytes
/
Home.py
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
"""
Landing page shows a description of the app, and explains how to use it.
"""
import streamlit as st
from st_helpers.UI_helpers import add_theme, apply_home_page_gradient
from streamlit_extras.switch_page_button import switch_page
add_theme(add_gradient=True)
# apply_home_page_gradient()
st.title("MLE Interview Assistant")
st.header("Helping engineers practice realistic and targeted Machine Learning interviews.")
st.subheader("Welcome!")
st.write(
"""Welcome to your personal Machine Learning Engineering (MLE) interview simulation. This project utilizes generative AI to simulate realistic MLE interviews, based on the job descriptions you provide."""
)
start_interview = st.button("Start the Interview!")
if start_interview:
switch_page("Interview")
# add_theme(add_gradient=True)