-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (162 loc) · 7.62 KB
/
Copy pathindex.html
File metadata and controls
165 lines (162 loc) · 7.62 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard Influencer</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body class="bg-slate-100 min-h-screen">
<header class="bg-white shadow-md">
<div class="max-w-7xl mx-auto px-4 py-5">
<h1 class="text-3xl font-bold text-slate-800"> Dashboard de Marketing de Influencer </h1>
<p class="text-slate-500"> Seguimiento de ingresos, conversiones y rendimiento por plataforma </p>
</div>
</header>
<main class="max-w-7xl mx-auto p-4 space-y-8"> <!-- KPIs -->
<section>
<h2 class="text-2xl font-bold mb-4">KPIs Principales</h2>
<div class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-4">
<div class="bg-white rounded-xl shadow p-5">
<p class="text-slate-500">Comisiones Generadas</p>
<h3 class="text-3xl font-bold text-green-600"> €4.125 </h3>
</div>
<div class="bg-white rounded-xl shadow p-5">
<p class="text-slate-500">Conversiones</p>
<h3 class="text-3xl font-bold text-blue-600"> 275 </h3>
</div>
<div class="bg-white rounded-xl shadow p-5">
<p class="text-slate-500">Engagement Rate</p>
<h3 class="text-3xl font-bold text-purple-600"> 8.7% </h3>
</div>
<div class="bg-white rounded-xl shadow p-5">
<p class="text-slate-500">ROI Promedio</p>
<h3 class="text-3xl font-bold text-orange-600"> 312% </h3>
</div>
</div>
</section> <!-- Drivers -->
<section>
<h2 class="text-2xl font-bold mb-4"> Factores de Rendimiento </h2>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-4">
<div class="bg-white p-5 rounded-xl shadow">
<h3 class="font-bold text-lg mb-3"> Funnel de Conversión </h3>
<ul class="space-y-2">
<li>Impresiones: 120.000</li>
<li>Clics: 14.800</li>
<li>Leads: 2.100</li>
<li>Ventas: 275</li>
</ul>
</div>
<div class="bg-white p-5 rounded-xl shadow">
<h3 class="font-bold text-lg mb-3"> Rendimiento por Plataforma </h3>
<ul class="space-y-2">
<li>Instagram: ROI 320%</li>
<li>TikTok: ROI 290%</li>
<li>YouTube: ROI 410%</li>
</ul>
</div>
<div class="bg-white p-5 rounded-xl shadow">
<h3 class="font-bold text-lg mb-3"> Rendimiento por Producto </h3>
<ul class="space-y-2">
<li>Producto A: €1.200</li>
<li>Producto B: €2.250</li>
<li>Producto C: €675</li>
</ul>
</div>
</div>
</section> <!-- Tabla Productos -->
<section>
<h2 class="text-2xl font-bold mb-4"> Productos </h2>
<div class="overflow-x-auto bg-white rounded-xl shadow">
<table class="w-full">
<thead class="bg-slate-200">
<tr>
<th class="text-left p-3">Producto</th>
<th class="text-left p-3">Precio</th>
<th class="text-left p-3">Comisiones</th>
<th class="text-left p-3">Conversiones</th>
<th class="text-left p-3">ROI</th>
</tr>
</thead>
<tbody>
<tr class="border-t">
<td class="p-3">Producto A</td>
<td class="p-3">€50</td>
<td class="p-3">€1.200</td>
<td class="p-3">160</td>
<td class="p-3">250%</td>
</tr>
<tr class="border-t">
<td class="p-3">Producto B</td>
<td class="p-3">€120</td>
<td class="p-3">€2.250</td>
<td class="p-3">90</td>
<td class="p-3">390%</td>
</tr>
<tr class="border-t">
<td class="p-3">Producto C</td>
<td class="p-3">€80</td>
<td class="p-3">€675</td>
<td class="p-3">25</td>
<td class="p-3">180%</td>
</tr>
</tbody>
</table>
</div>
</section> <!-- Tabla Plataformas -->
<section>
<h2 class="text-2xl font-bold mb-4"> Plataformas </h2>
<div class="overflow-x-auto bg-white rounded-xl shadow">
<table class="w-full">
<thead class="bg-slate-200">
<tr>
<th class="p-3 text-left">Plataforma</th>
<th class="p-3 text-left">Alcance</th>
<th class="p-3 text-left">Engagement</th>
<th class="p-3 text-left">Conversiones</th>
</tr>
</thead>
<tbody>
<tr class="border-t">
<td class="p-3">Instagram</td>
<td class="p-3">45.000</td>
<td class="p-3">9.4%</td>
<td class="p-3">110</td>
</tr>
<tr class="border-t">
<td class="p-3">TikTok</td>
<td class="p-3">38.000</td>
<td class="p-3">8.2%</td>
<td class="p-3">85</td>
</tr>
<tr class="border-t">
<td class="p-3">YouTube</td>
<td class="p-3">37.000</td>
<td class="p-3">7.8%</td>
<td class="p-3">80</td>
</tr>
</tbody>
</table>
</div>
</section> <!-- Campañas y Alertas -->
<section class="grid grid-cols-1 lg:grid-cols-2 gap-4">
<div class="bg-white rounded-xl shadow p-5">
<h2 class="text-xl font-bold mb-3"> Campañas </h2>
<ul class="space-y-2">
<li>Campaña Verano - Producto B - ROI 390%</li>
<li>Campaña TikTok Junio - ROI 280%</li>
<li>Campaña YouTube Shorts - ROI 410%</li>
</ul>
</div>
<div class="bg-white rounded-xl shadow p-5">
<h2 class="text-xl font-bold mb-3"> Alertas </h2>
<ul class="space-y-2">
<li class="text-red-600"> ↓ TikTok bajó 12% en conversiones </li>
<li class="text-green-600"> ↑ YouTube aumentó 24% en ROI </li>
<li class="text-yellow-600"> Producto C necesita optimización </li>
</ul>
</div>
</section>
</main>
</body>
</html>