Final_Project / app.py
GMARTINEZMILLA's picture
feat: generated files
2c1bfb4
raw
history blame
933 Bytes
import streamlit as st
# Diseño de la página principal
st.set_page_config(page_title="Customer Insights App", page_icon=":bar_chart:")
st.title("Welcome to Customer Insights App")
st.markdown("""
This app helps businesses analyze customer behaviors and provide personalized recommendations based on purchase history.
Use the tools below to dive deeper into your customer data.
""")
# Navegación a las otras herramientas
st.markdown("## Available Tools:")
col1, col2 = st.columns(2)
with col1:
st.markdown("### 🔍 Customer Analysis")
st.write("Analyze customer data to discover patterns and insights.")
st.button("Go to Customer Analysis", on_click=lambda: st.experimental_rerun())
with col2:
st.markdown("### 📊 Customer Recommendations")
st.write("Generate recommendations based on customer purchase history.")
st.button("Go to Recommendations", on_click=lambda: st.experimental_rerun())