Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -106,21 +106,21 @@ def main_func(WellBeing, SupportiveGM, Engagement, Workload, WorkEnvironment, Me
106
 
107
  # UI Setup
108
  with gr.Blocks() as demo:
109
- gr.HTML("""
110
- <div style="text-align: center;">
111
- <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5f/Hilton_Worldwide_Logo_2010.svg/2560px-Hilton_Worldwide_Logo_2010.svg.png" width="250px">
112
  </div>
113
- """)
114
  gr.Markdown("<h1 style='color: #0057B8;'>Hilton Team Member Retention Predictor</h1>")
115
  gr.Markdown("""
116
  <div style='font-size: 20px; color: #0057B8;'>
117
- ✨ <b>Welcome to Hilton’s Employee Retention Predictor</b><br>
118
- This tool helps <b>HR leaders & managers</b> assess <b>team member engagement</b>
119
- and predict <b>turnover risk</b> using AI-powered insights.<br>
120
- 🔍 <b>See what factors drive retention & make data-driven decisions.</b>
121
  </div>
122
- """)
123
-
124
  # Dropdown for Employee Profiles
125
  profile_dropdown = gr.Dropdown(choices=list(employee_profiles.keys()), label="Select Employee Profile")
126
 
 
106
 
107
  # UI Setup
108
  with gr.Blocks() as demo:
109
+ gr.Markdown("""
110
+ <div style="display: flex; justify-content: center; align-items: center;">
111
+ <img src="file=assets/HiltonLogoUpdated.png" alt="Hilton Logo" width="250px">
112
  </div>
113
+ """)
114
  gr.Markdown("<h1 style='color: #0057B8;'>Hilton Team Member Retention Predictor</h1>")
115
  gr.Markdown("""
116
  <div style='font-size: 20px; color: #0057B8;'>
117
+ ✨ <b>Welcome to Hilton’s Employee Retention Predictor</b><br>
118
+ This tool helps <b>Sales & Marketing leaders and Front Office Operations teams</b>—The Face of Hilton—
119
+ assess <b>team member engagement</b> and predict <b>turnover risk</b> using AI-powered insights.<br>
120
+ 🔍 <b>Understand what drives retention and make data-driven decisions to keep top talent.</b>
121
  </div>
122
+ """)
123
+
124
  # Dropdown for Employee Profiles
125
  profile_dropdown = gr.Dropdown(choices=list(employee_profiles.keys()), label="Select Employee Profile")
126