File size: 1,157 Bytes
cc60c65
 
 
 
 
 
 
 
f909f76
cc60c65
 
 
 
 
 
 
 
f909f76
cc60c65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f909f76
 
 
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
34
35
36
37
38
39
40
41
42
43
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()