Smart-Apps / app.py
palitrajarshi's picture
Update app.py
492f82e
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('./genai.jpg',width=300, use_column_width=True)
#Invoking main function
if __name__ == '__main__':
main()