File size: 18,491 Bytes
222850a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DeepSite - Crea sitios web con IA</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #6e8efb, #a777e3);
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
    </style>
</head>
<body class="bg-gray-50 min-h-screen">
    <!-- Navbar -->
    <nav class="bg-white shadow-sm">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0 flex items-center">
                        <i class="fas fa-magic text-purple-600 text-2xl mr-2"></i>
                        <span class="text-xl font-bold text-gray-900">DeepSite</span>
                    </div>
                </div>
                <div class="hidden md:ml-6 md:flex md:items-center space-x-8">
                    <a href="#" class="text-gray-900 hover:text-purple-600 px-3 py-2 text-sm font-medium">Inicio</a>
                    <a href="#" class="text-gray-500 hover:text-purple-600 px-3 py-2 text-sm font-medium">Plantillas</a>
                    <a href="#" class="text-gray-500 hover:text-purple-600 px-3 py-2 text-sm font-medium">Ejemplos</a>
                    <a href="#" class="text-gray-500 hover:text-purple-600 px-3 py-2 text-sm font-medium">Precios</a>
                </div>
                <div class="flex items-center">
                    <button class="bg-purple-600 hover:bg-purple-700 text-white px-4 py-2 rounded-md text-sm font-medium">
                        Iniciar sesión
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero Section -->
    <div class="gradient-bg text-white">
        <div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8 text-center">
            <h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
                Crea sitios web impresionantes con IA
            </h1>
            <p class="mt-6 max-w-2xl mx-auto text-xl">
                Describe lo que necesitas y nuestra inteligencia artificial generará un sitio web profesional en minutos.
            </p>
            <div class="mt-10 max-w-md mx-auto bg-white rounded-lg overflow-hidden shadow-xl">
                <div class="p-6">
                    <div class="flex items-center border-b border-gray-200 pb-3">
                        <i class="fas fa-robot text-purple-600 mr-2"></i>
                        <input type="text" class="flex-1 outline-none text-gray-800 placeholder-gray-400" placeholder="Ej: 'Necesito un sitio web para mi restaurante italiano...'">
                    </div>
                    <button class="mt-4 w-full bg-purple-600 hover:bg-purple-700 text-white py-2 px-4 rounded-md font-medium">
                        Generar sitio web
                    </button>
                </div>
            </div>
        </div>
    </div>

    <!-- Features Section -->
    <div class="py-12 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="lg:text-center">
                <h2 class="text-base text-purple-600 font-semibold tracking-wide uppercase">Características</h2>
                <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
                    Diseño inteligente sin esfuerzo
                </p>
            </div>

            <div class="mt-10">
                <div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
                    <!-- Feature 1 -->
                    <div class="bg-gray-50 p-6 rounded-lg card-hover transition-all duration-300 fade-in">
                        <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
                            <i class="fas fa-bolt"></i>
                        </div>
                        <div class="mt-4">
                            <h3 class="text-lg font-medium text-gray-900">Generación instantánea</h3>
                            <p class="mt-2 text-base text-gray-500">
                                Obtén un sitio web completo en cuestión de minutos con solo describir lo que necesitas.
                            </p>
                        </div>
                    </div>

                    <!-- Feature 2 -->
                    <div class="bg-gray-50 p-6 rounded-lg card-hover transition-all duration-300 fade-in">
                        <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
                            <i class="fas fa-palette"></i>
                        </div>
                        <div class="mt-4">
                            <h3 class="text-lg font-medium text-gray-900">Diseños personalizados</h3>
                            <p class="mt-2 text-base text-gray-500">
                                La IA adapta el diseño a tu industria y preferencias para crear algo único.
                            </p>
                        </div>
                    </div>

                    <!-- Feature 3 -->
                    <div class="bg-gray-50 p-6 rounded-lg card-hover transition-all duration-300 fade-in">
                        <div class="flex items-center justify-center h-12 w-12 rounded-md bg-purple-500 text-white">
                            <i class="fas fa-mobile-alt"></i>
                        </div>
                        <div class="mt-4">
                            <h3 class="text-lg font-medium text-gray-900">Totalmente responsive</h3>
                            <p class="mt-2 text-base text-gray-500">
                                Sitios web que se ven perfectos en cualquier dispositivo, automáticamente.
                            </p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Demo Section -->
    <div class="py-12 bg-gray-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="lg:text-center mb-12">
                <h2 class="text-base text-purple-600 font-semibold tracking-wide uppercase">Cómo funciona</h2>
                <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
                    Crea tu sitio en 3 pasos
                </p>
            </div>

            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-8 md:mb-0 md:pr-10">
                    <div class="bg-white p-6 rounded-lg shadow-md">
                        <div class="flex items-center mb-4">
                            <div class="flex items-center justify-center h-8 w-8 rounded-full bg-purple-100 text-purple-600 font-bold mr-3">1</div>
                            <h3 class="text-lg font-medium">Describe tu sitio web</h3>
                        </div>
                        <p class="text-gray-600 mb-6">Cuéntanos qué necesitas, para qué industria y qué características debe tener tu sitio.</p>

                        <div class="flex items-center mb-4">
                            <div class="flex items-center justify-center h-8 w-8 rounded-full bg-purple-100 text-purple-600 font-bold mr-3">2</div>
                            <h3 class="text-lg font-medium">La IA genera opciones</h3>
                        </div>
                        <p class="text-gray-600 mb-6">Nuestro sistema crea varias versiones de tu sitio web basadas en tu descripción.</p>

                        <div class="flex items-center">
                            <div class="flex items-center justify-center h-8 w-8 rounded-full bg-purple-100 text-purple-600 font-bold mr-3">3</div>
                            <h3 class="text-lg font-medium">Personaliza y publica</h3>
                        </div>
                        <p class="text-gray-600">Edita el diseño, añade tu contenido y publícalo con un solo clic.</p>
                    </div>
                </div>
                <div class="md:w-1/2">
                    <div class="relative">
                        <div class="absolute -top-6 -left-6 w-32 h-32 bg-purple-200 rounded-full opacity-50"></div>
                        <div class="absolute -bottom-6 -right-6 w-32 h-32 bg-purple-200 rounded-full opacity-50"></div>
                        <div class="relative bg-white p-2 rounded-xl shadow-lg border border-gray-200">
                            <img src="https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80" alt="Website demo" class="rounded-lg">
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Templates Section -->
    <div class="py-12 bg-white">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="lg:text-center mb-12">
                <h2 class="text-base text-purple-600 font-semibold tracking-wide uppercase">Plantillas</h2>
                <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
                    Ejemplos generados por nuestra IA
                </p>
            </div>

            <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
                <!-- Template 1 -->
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition-all duration-300">
                    <div class="h-48 bg-gradient-to-r from-blue-400 to-blue-600 flex items-center justify-center">
                        <i class="fas fa-utensils text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-semibold text-gray-900">Restaurante Elegante</h3>
                        <p class="mt-2 text-gray-600">Perfecto para restaurantes de alta cocina con menú, reservas y galería.</p>
                        <button class="mt-4 text-purple-600 hover:text-purple-800 font-medium">
                            Usar esta plantilla →
                        </button>
                    </div>
                </div>

                <!-- Template 2 -->
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition-all duration-300">
                    <div class="h-48 bg-gradient-to-r from-green-400 to-green-600 flex items-center justify-center">
                        <i class="fas fa-store text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-semibold text-gray-900">Tienda Online</h3>
                        <p class="mt-2 text-gray-600">E-commerce completo con carrito de compras, categorías y pasarela de pago.</p>
                        <button class="mt-4 text-purple-600 hover:text-purple-800 font-medium">
                            Usar esta plantilla →
                        </button>
                    </div>
                </div>

                <!-- Template 3 -->
                <div class="bg-gray-50 rounded-lg overflow-hidden shadow-md card-hover transition-all duration-300">
                    <div class="h-48 bg-gradient-to-r from-purple-400 to-purple-600 flex items-center justify-center">
                        <i class="fas fa-laptop-code text-white text-5xl"></i>
                    </div>
                    <div class="p-6">
                        <h3 class="text-xl font-semibold text-gray-900">Portafolio Profesional</h3>
                        <p class="mt-2 text-gray-600">Ideal para freelancers y creativos que quieren mostrar su trabajo.</p>
                        <button class="mt-4 text-purple-600 hover:text-purple-800 font-medium">
                            Usar esta plantilla →
                        </button>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- CTA Section -->
    <div class="gradient-bg py-16">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
            <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
                ¿Listo para crear tu sitio web con IA?
            </h2>
            <p class="mt-4 max-w-2xl mx-auto text-xl text-purple-100">
                Empieza gratis y descubre cómo la inteligencia artificial puede transformar tu presencia online.
            </p>
            <div class="mt-8 flex justify-center">
                <button class="bg-white text-purple-600 hover:bg-gray-100 px-8 py-3 rounded-md text-lg font-medium">
                    Comenzar ahora
                </button>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="bg-gray-800">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
            <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Producto</h3>
                    <ul class="mt-4 space-y-2">
                        <li><a href="#" class="text-gray-300 hover:text-white">Características</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Plantillas</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Precios</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Ejemplos</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Recursos</h3>
                    <ul class="mt-4 space-y-2">
                        <li><a href="#" class="text-gray-300 hover:text-white">Documentación</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Guías</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Blog</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Soporte</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Empresa</h3>
                    <ul class="mt-4 space-y-2">
                        <li><a href="#" class="text-gray-300 hover:text-white">Nosotros</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Trabajos</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Privacidad</a></li>
                        <li><a href="#" class="text-gray-300 hover:text-white">Términos</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-white text-sm font-semibold tracking-wider uppercase">Síguenos</h3>
                    <div class="mt-4 flex space-x-4">
                        <a href="#" class="text-gray-400 hover:text-white">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white">
                            <i class="fab fa-twitter"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" class="text-gray-400 hover:text-white">
                            <i class="fab fa-linkedin-in"></i>
                        </a>
                    </div>
                    <div class="mt-6">
                        <p class="text-gray-300 text-sm">
                            © 2023 DeepSite AI. Todos los derechos reservados.
                        </p>
                    </div>
                </div>
            </div>
        </div>
    </footer>

    <script>
        // Simple animation for elements
        document.addEventListener('DOMContentLoaded', function() {
            const animatedElements = document.querySelectorAll('.fade-in');
            
            const observer = new IntersectionObserver((entries) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.style.opacity = 1;
                    }
                });
            }, { threshold: 0.1 });
            
            animatedElements.forEach(el => {
                el.style.opacity = 0;
                observer.observe(el);
            });
            
            // Template buttons functionality
            document.querySelectorAll('button').forEach(button => {
                button.addEventListener('click', function() {
                    if (this.textContent.includes('plantilla') || 
                        this.textContent.includes('Generar') || 
                        this.textContent.includes('Comenzar')) {
                        alert('¡Gracias por tu interés! En una implementación real, esto te llevaría al generador de sitios web.');
                    }
                });
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Cruzito99/t2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>