Abylay
welcome
7547da5
raw
history blame contribute delete
No virus
1.9 kB
# Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import streamlit as st
from streamlit.logger import get_logger
LOGGER = get_logger(__name__)
def run():
st.set_page_config(
page_title="Jasaim Candidate Matching",
page_icon="πŸ‘‹",
)
# Use columns to place the title and logo on the same line
col1, col2 = st.columns([3, 1])
with col1:
st.write("# Welcome to 'AI Job Description' test made by Jasaim ! πŸ‘‹")
with col2:
st.image("jasaim.png", use_column_width=True)
st.sidebar.success("Select an option above.")
st.markdown(
"""
Jasaim extends a warm welcome and heartfelt thanks to all participants for their invaluable contributions in improving our candidate matching model. This model, designed to match and score candidates for specific job roles, is a testament to your dedication and expertise.
**πŸ‘ˆ Select an option from the sidebar** to get started!
### About Jasaim
Jasaim is committed to leveraging advanced machine learning techniques to streamline and enhance the recruitment process.
### Want to learn more?
- Visit our [website](https://app.ediploma.kz)
- Contact [email](info@jasaim.kz)
"""
)
if __name__ == "__main__":
run()