Spaces:
Sleeping
Sleeping
| 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() |