Spaces:
Sleeping
Sleeping
import streamlit as st | |
st.title('Супер классные нейросетки') | |
st.caption('От Димы, Наташи и Серёжи') | |
st.divider() | |
col1, col2, col3 = st.columns(3) | |
with col1: | |
st.page_link('pages/kudinov_films.py', label='Оценщик фильмов', icon='🎥') | |
with col2: | |
st.page_link('pages/natasha_model.py', label='Токсикметр', icon='🤬') | |
with col3: | |
st.page_link('pages/kdnv_model.py', label='Ночной собутыльник', icon='🍻') | |
st.divider() |