Spaces:
Running
Running
Update services/analytics_tab_module.py
Browse files
services/analytics_tab_module.py
CHANGED
@@ -596,7 +596,13 @@ class AnalyticsTab:
|
|
596 |
|
597 |
def create_tab_ui(self):
|
598 |
# This method is called by the main app to build the UI for this tab
|
599 |
-
with gr.TabItem("
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
gr.Markdown("## π Analisi Performance LinkedIn")
|
601 |
gr.Markdown("Seleziona un intervallo di date per i grafici. Clicca i pulsanti (π£ Insights, Ζ Formula, π§ Esplora) su un grafico per azioni.")
|
602 |
self.analytics_status_md = gr.Markdown("Stato analisi grafici...")
|
|
|
596 |
|
597 |
def create_tab_ui(self):
|
598 |
# This method is called by the main app to build the UI for this tab
|
599 |
+
with gr.TabItem("π Grafici", id="tab_analytics_module"): # Changed id to avoid conflict if old tab exists temporarily
|
600 |
+
gr.HTML("""
|
601 |
+
<div style="text-align: center; margin-bottom: 30px;">
|
602 |
+
<h2 style="color: white; font-weight: 700; margin-bottom: 10px;">Grafici</h2>
|
603 |
+
<p style="color: rgba(255,255,255,0.7);">Deep insights generated from your LinkedIn organization data</p>
|
604 |
+
</div>
|
605 |
+
""")
|
606 |
gr.Markdown("## π Analisi Performance LinkedIn")
|
607 |
gr.Markdown("Seleziona un intervallo di date per i grafici. Clicca i pulsanti (π£ Insights, Ζ Formula, π§ Esplora) su un grafico per azioni.")
|
608 |
self.analytics_status_md = gr.Markdown("Stato analisi grafici...")
|