luigi12345 commited on
Commit
2f40bfc
verified
1 Parent(s): 9e38a9e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +305 -19
index.html CHANGED
@@ -1,19 +1,305 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="es">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta name="description" content="Optimiza tu negocio con soluciones de Inteligencia Artificial. Chatbots, automatizaci贸n y desarrollo de apps para mejorar la eficiencia y el impacto.">
7
+ <meta name="keywords" content="IA, Chatbots, Automatizaci贸n, Desarrollo de Apps, Eficiencia, Transformaci贸n Digital">
8
+ <meta name="author" content="Sami Halawa">
9
+ <link rel="icon" href="favicon.ico" type="image/x-icon">
10
+ <title>Optimiza tu Negocio con IA | Sami Halawa</title>
11
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace/dist/shoelace.js"></script>
12
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace/dist/themes/light.css">
13
+ <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
14
+ <style>
15
+ :root {
16
+ --primary-color: #2563eb;
17
+ --secondary-color: #7c3aed;
18
+ --accent-color: #06b6d4;
19
+ --background-color: #f8fafc;
20
+ --text-color: #1e293b;
21
+ --card-background: rgba(255, 255, 255, 0.7);
22
+ --glass-background: rgba(255, 255, 255, 0.6);
23
+ --glass-border: rgba(255, 255, 255, 0.2);
24
+ --glass-shadow: rgba(17, 12, 46, 0.15);
25
+ }
26
+
27
+ /* Estilos generales */
28
+ body {
29
+ font-family: 'Plus Jakarta Sans', sans-serif;
30
+ line-height: 1.7;
31
+ margin: 0;
32
+ padding: 0;
33
+ color: var(--text-color);
34
+ background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
35
+ overflow-x: hidden;
36
+ }
37
+
38
+ .glass-effect {
39
+ background: var(--glass-background);
40
+ backdrop-filter: blur(12px);
41
+ -webkit-backdrop-filter: blur(12px);
42
+ border: 1px solid var(--glass-border);
43
+ box-shadow: 0 8px 32px 0 var(--glass-shadow);
44
+ border-radius: 24px;
45
+ }
46
+
47
+ /* Header styles */
48
+ header {
49
+ position: fixed;
50
+ width: 100%;
51
+ z-index: 1000;
52
+ padding: 1rem;
53
+ background: var(--glass-background);
54
+ backdrop-filter: blur(12px);
55
+ border-bottom: 1px solid var(--glass-border);
56
+ }
57
+
58
+ nav sl-button::part(base) {
59
+ font-weight: 500;
60
+ border-radius: 12px;
61
+ transition: all 0.3s ease;
62
+ }
63
+
64
+ nav sl-button[type="primary"]::part(base) {
65
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
66
+ border: none;
67
+ }
68
+
69
+ /* Hero section */
70
+ #hero {
71
+ min-height: 100vh;
72
+ display: flex;
73
+ flex-direction: column;
74
+ justify-content: center;
75
+ align-items: center;
76
+ text-align: center;
77
+ padding: 6rem 2rem;
78
+ position: relative;
79
+ overflow: hidden;
80
+ }
81
+
82
+ #hero::before {
83
+ content: '';
84
+ position: absolute;
85
+ width: 100%;
86
+ height: 100%;
87
+ background: radial-gradient(circle at top right, var(--accent-color) 0%, transparent 70%),
88
+ radial-gradient(circle at bottom left, var(--secondary-color) 0%, transparent 70%);
89
+ opacity: 0.1;
90
+ z-index: -1;
91
+ }
92
+
93
+ #hero h1 {
94
+ font-size: 3.5rem;
95
+ font-weight: 700;
96
+ margin-bottom: 1.5rem;
97
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
98
+ -webkit-background-clip: text;
99
+ -webkit-text-fill-color: transparent;
100
+ line-height: 1.2;
101
+ }
102
+
103
+ #hero p {
104
+ font-size: 1.25rem;
105
+ max-width: 600px;
106
+ margin-bottom: 2.5rem;
107
+ }
108
+
109
+ /* Services section */
110
+ #services {
111
+ padding: 6rem 2rem;
112
+ }
113
+
114
+ .service-card {
115
+ padding: 2rem;
116
+ margin: 1rem;
117
+ transition: transform 0.3s ease;
118
+ }
119
+
120
+ .service-card:hover {
121
+ transform: translateY(-5px);
122
+ }
123
+
124
+ /* Testimonials section */
125
+ .testimonial-card {
126
+ padding: 2rem;
127
+ margin: 1rem;
128
+ text-align: left;
129
+ }
130
+
131
+ .testimonial-card p {
132
+ font-size: 1.1rem;
133
+ font-style: italic;
134
+ margin-bottom: 1.5rem;
135
+ }
136
+
137
+ /* Contact section */
138
+ #contact {
139
+ padding: 6rem 2rem;
140
+ background: var(--glass-background);
141
+ backdrop-filter: blur(12px);
142
+ }
143
+
144
+ /* Animations */
145
+ @keyframes fadeUp {
146
+ from {
147
+ opacity: 0;
148
+ transform: translateY(20px);
149
+ }
150
+ to {
151
+ opacity: 1;
152
+ transform: translateY(0);
153
+ }
154
+ }
155
+
156
+ .animate-fadeUp {
157
+ animation: fadeUp 0.6s ease forwards;
158
+ }
159
+
160
+ /* Custom button styles */
161
+ sl-button[size="large"]::part(base) {
162
+ padding: 1rem 2rem;
163
+ font-size: 1.1rem;
164
+ border-radius: 12px;
165
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
166
+ border: none;
167
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
168
+ transition: transform 0.3s ease, box-shadow 0.3s ease;
169
+ }
170
+
171
+ sl-button[size="large"]::part(base):hover {
172
+ transform: translateY(-2px);
173
+ box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
174
+ }
175
+
176
+ /* Responsive design */
177
+ @media (max-width: 768px) {
178
+ #hero h1 {
179
+ font-size: 2.5rem;
180
+ }
181
+
182
+ #hero p {
183
+ font-size: 1.1rem;
184
+ }
185
+
186
+ .service-card {
187
+ margin: 0.5rem;
188
+ }
189
+ }
190
+
191
+ /* Custom tab styles */
192
+ sl-tab-group::part(base) {
193
+ border-radius: 16px;
194
+ overflow: hidden;
195
+ }
196
+
197
+ sl-tab::part(base) {
198
+ padding: 1rem 1.5rem;
199
+ font-weight: 500;
200
+ }
201
+
202
+ sl-tab[active]::part(base) {
203
+ color: var(--primary-color);
204
+ border-color: var(--primary-color);
205
+ }
206
+
207
+ /* Footer styles */
208
+ footer {
209
+ background: var(--glass-background);
210
+ backdrop-filter: blur(12px);
211
+ padding: 2rem;
212
+ text-align: center;
213
+ border-top: 1px solid var(--glass-border);
214
+ }
215
+ </style>
216
+ </head>
217
+ <body>
218
+ <header>
219
+ <sl-header>
220
+ <nav slot="end">
221
+ <sl-button href="#services" type="default">Servicios</sl-button>
222
+ <sl-button href="#offer" type="primary">Oferta Especial</sl-button>
223
+ <sl-button href="#contact" type="default">Contacto</sl-button>
224
+ </nav>
225
+ </sl-header>
226
+ </header>
227
+
228
+ <main>
229
+ <section id="hero">
230
+ <h1>Optimiza tu Negocio con Inteligencia Artificial</h1>
231
+ <p>Descubre c贸mo la IA puede transformar tu forma de trabajar, mejorar la eficiencia y aumentar tu impacto.</p>
232
+ <sl-button href="https://api.whatsapp.com/send?phone=34679794037&amp;text=Hola%20Sami,%20quiero%20saber%20m%C3%A1s%20sobre%20tus%20servicios%20de%20IA." size="large" type="primary">Hablemos Hoy</sl-button>
233
+ </section>
234
+
235
+ <section id="services">
236
+ <h2>Servicios</h2>
237
+ <sl-tab-group>
238
+ <sl-tab slot="nav" panel="chatbots">Chatbots Inteligentes</sl-tab>
239
+ <sl-tab slot="nav" panel="automation">Automatizaci贸n</sl-tab>
240
+ <sl-tab slot="nav" panel="development">Desarrollo de Apps</sl-tab>
241
+
242
+ <sl-tab-panel name="chatbots">
243
+ <article>
244
+ <h3>Chatbots Inteligentes</h3>
245
+ <p>Creaci贸n de chatbots personalizados que mejoran la atenci贸n al cliente y optimizan el soporte.</p>
246
+ </article>
247
+ </sl-tab-panel>
248
+ <sl-tab-panel name="automation">
249
+ <article>
250
+ <h3>Automatizaci贸n</h3>
251
+ <p>Automatiza tareas repetitivas y libera tiempo para enfocarte en lo importante.</p>
252
+ </article>
253
+ </sl-tab-panel>
254
+ <sl-tab-panel name="development">
255
+ <article>
256
+ <h3>Desarrollo de Apps</h3>
257
+ <p>Dise帽o y desarrollo de apps y plataformas escalables para expandir tu negocio.</p>
258
+ </article>
259
+ </sl-tab-panel>
260
+ </sl-tab-group>
261
+ </section>
262
+
263
+ <section id="offer">
264
+ <h2>Oferta Especial</h2>
265
+ <p>Solicita un <b>chatbot personalizado</b> completamente gratis y comienza a transformar tu negocio hoy mismo.</p>
266
+ <sl-button href="https://api.whatsapp.com/send?phone=34679794037&amp;text=Hola%20Sami,%20quiero%20solicitar%20el%20chatbot%20gratuito." size="large" type="primary">Solicitar Oferta</sl-button>
267
+ </section>
268
+
269
+ <section id="testimonials">
270
+ <h2>Testimonios</h2>
271
+ <sl-carousel class="testimonials-carousel">
272
+ <sl-carousel-item>
273
+ <sl-card class="testimonial-card">
274
+ <p>"Gracias a los servicios de Sami, hemos mejorado nuestras operaciones en un 40%."</p>
275
+ <footer>
276
+ <strong>- Carlos, Consultor de Marketing</strong>
277
+ </footer>
278
+ </sl-card>
279
+ </sl-carousel-item>
280
+ <sl-carousel-item>
281
+ <sl-card class="testimonial-card">
282
+ <p>"La automatizaci贸n ha cambiado la forma en que gestionamos tareas diarias."</p>
283
+ <footer>
284
+ <strong>- Laura, Dise帽adora Gr谩fica</strong>
285
+ </footer>
286
+ </sl-card>
287
+ </sl-carousel-item>
288
+ </sl-carousel>
289
+ </section>
290
+
291
+ <section id="contact">
292
+ <h2>Contacto</h2>
293
+ <p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
294
+ <p>WhatsApp: <a href="https://api.whatsapp.com/send?phone=34679794037&amp;text=Hola%20Sami,%20quiero%20hablar%20sobre%20tus%20servicios.">+34 679794037</a></p>
295
+ <p>Direcci贸n: Cristo Victoria, 28026 Madrid, Espa帽a</p>
296
+ </section>
297
+ </main>
298
+
299
+ <footer>
300
+ <sl-footer>
301
+ <p>&copy; 2024 Sami Halawa | Optimiza tu Negocio</p>
302
+ </sl-footer>
303
+ </footer>
304
+ </body>
305
+ </html>