File size: 800 Bytes
e9f8bde
 
 
 
 
 
f58f5b7
 
 
 
 
 
 
 
 
 
 
 
b392369
 
d73c355
e9f8bde
cab0ef7
 
0727d5a
e9f8bde
 
 
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
import streamlit as st
from utils import *
import uuid

def main():

    st.set_page_config(
    page_title="Resume Screening Assistance",
    page_icon="๐Ÿ’",
    layout="wide",
    initial_sidebar_state="expanded",
    menu_items={
        'Get Help': 'https://www.extremelycoolapp.com/help',
        'Report a bug': "https://www.extremelycoolapp.com/bug",
        'About': "# This is a header. This is an *extremely* cool app!"
        }
    )
    
    st.title("Smart Apps ๐Ÿ’ ")
    st.subheader("Your Personal Smart Assistant")
    st.text('These are a set of GenAI apps designed to make human intensive tasks easier')

    #st.sidebar.title("๐Ÿ˜Ž")
    st.sidebar.image('./resume_screening.jpg',width=300, use_column_width=True)

#Invoking main function
if __name__ == '__main__':
    main()