import streamlit as st import pandas as pd from embroidery import embroidery from screenPrint import screenPrint from fullColor import fullColor from embroideryFullcolor import embFull from embroideryScreenprint import embScreen from screenprintFullcolor import screenFull from utils import footer st.set_page_config( page_title="Key Innovations Inc.", page_icon="https://tscstatic.keyinnovations.ca/logo/logo_1T895ONEIG.png" ) st.image("https://tscstatic.keyinnovations.ca/logo/logo_1T895ONEIG.png", width=150) st.subheader('Key Innovations Inc.') st.text('Quoting System') option = st.segmented_control( "Select an option:", ["Embroidery", "Screen Print", "Full Colour", "Embroidery & Screen Print", "Embroidery & Full Colour", "Screenprint & Full Colour"] ) if option == 'Embroidery': embroidery() elif option == 'Screen Print': screenPrint() elif option == "Full Colour": fullColor() elif option == 'Embroidery & Screen Print': embScreen() elif option == "Embroidery & Full Colour": embFull() elif option == "Screenprint & Full Colour": screenFull() footer()