File size: 696 Bytes
bd19734 e70f878 bd19734 e70f878 bd19734 e70f878 bd19734 | 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 33 | import streamlit as st
import os
import sys
sys.path.append(os.path.dirname(os.path.dirname(__file__)))
st.set_page_config(
page_title="GiveMeSomeCredit",
page_icon="🏦",
layout="wide",
initial_sidebar_state="collapsed"
)
st.title("🏦 GiveMeSomeCredit - Кредитный скоринг")
st.markdown("---")
col1, col2 = st.columns(2)
with col1:
st.subheader("📝 Анкета")
if st.button("Перейти к анкете"):
st.switch_page("pages/application.py")
with col2:
st.subheader("📊 Симуляция")
if st.button("Перейти к симуляции"):
st.switch_page("pages/simulation.py")
st.markdown("---")
|