LumiereIQ / app.py
samcoding5854's picture
Completed creating visuals
3b6c254
raw
history blame
766 Bytes
import streamlit as st
from Pages.createVisual import CREATEVISUALS
from Pages.AboutMe import ABOUTUS
from Pages.bgImages import BGIMAGES
from Pages.createVideo import CREATEGIF
st.set_page_config(
page_title="LumiereIQ",
page_icon="📸",
layout="wide", # 'centered' or 'wide'
initial_sidebar_state="expanded" # 'auto', 'expanded', 'collapsed'
)
def MAIN():
st.sidebar.title('LumiereIQ')
app = st.sidebar.selectbox('', ['Create Visuals','Background Images','Create Video', 'About Me'])
if app == "Create Visuals":
CREATEVISUALS()
elif app == "About Me":
ABOUTUS()
elif app == "Background Images":
BGIMAGES()
elif app == "Create Video":
CREATEGIF()
MAIN()