initial commit

This commit is contained in:
2026-01-12 17:43:21 -04:00
commit bc1928a9a5
2 changed files with 334 additions and 0 deletions

322
index.html Normal file
View File

@@ -0,0 +1,322 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Qub Solutions | Software para Venezuela</title>
<style>
/* --- ESTILOS GENERALES (CSS) --- */
:root {
--primary-color: #0f172a; /* Azul oscuro corporativo */
--secondary-color: #3b82f6; /* Azul brillante */
--accent-color: #10b981; /* Verde (para Zas) */
--bg-light: #f8fafc;
--text-dark: #1e293b;
--text-gray: #64748b;
--white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
body {
line-height: 1.6;
color: var(--text-dark);
background-color: var(--bg-light);
}
a { text-decoration: none; }
ul { list-style: none; }
/* --- BOTONES --- */
.btn {
display: inline-block;
padding: 12px 24px;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background-color: var(--secondary-color);
color: var(--white);
}
.btn-primary:hover { background-color: #2563eb; }
.btn-outline {
border: 2px solid var(--white);
color: var(--white);
margin-left: 10px;
}
.btn-outline:hover { background-color: rgba(255,255,255,0.1); }
.btn-zas {
background-color: var(--accent-color);
color: var(--white);
box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}
.btn-zas:hover { transform: translateY(-2px); }
/* --- HEADER --- */
header {
background-color: var(--primary-color);
padding: 1rem 5%;
position: sticky;
top: 0;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
color: var(--white);
font-size: 1.5rem;
font-weight: 800;
letter-spacing: -1px;
}
.logo span { color: var(--secondary-color); }
nav ul { display: flex; gap: 20px; }
nav a { color: #cbd5e1; font-size: 0.95rem; }
nav a:hover { color: var(--white); }
.nav-zas { color: var(--accent-color) !important; font-weight: bold; }
/* --- HERO SECTION --- */
.hero {
background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
background-size: cover;
color: var(--white);
padding: 80px 5%;
text-align: center;
min-height: 80vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.hero h1 {
font-size: 2.8rem;
margin-bottom: 20px;
line-height: 1.2;
}
.hero p {
font-size: 1.1rem;
max-width: 600px;
margin-bottom: 30px;
color: #cbd5e1;
}
/* --- SERVICIOS (QUB) --- */
.services {
padding: 80px 5%;
background: var(--white);
}
.section-title {
text-align: center;
margin-bottom: 50px;
}
.section-title h2 { font-size: 2rem; color: var(--primary-color); }
.section-title p { color: var(--text-gray); }
.cards-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.card {
padding: 30px;
border-radius: 10px;
background: var(--bg-light);
border: 1px solid #e2e8f0;
transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--secondary-color); }
.icon { font-size: 2rem; margin-bottom: 15px; display: block; }
.card h3 { margin-bottom: 10px; }
/* --- ZAS PRODUCT SECTION --- */
.zas-section {
padding: 80px 5%;
background-color: #ecfdf5; /* Fondo verde muy claro */
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 50px;
}
.zas-content { flex: 1; min-width: 300px; }
.zas-visual {
flex: 1;
min-width: 300px;
background: var(--white);
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
text-align: center;
}
.badge {
background-color: var(--accent-color);
color: white;
padding: 5px 10px;
border-radius: 20px;
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
}
.zas-content h2 { font-size: 2.5rem; margin: 15px 0; color: var(--primary-color); }
.zas-list li { margin-bottom: 15px; display: flex; align-items: center; }
.check { color: var(--accent-color); margin-right: 10px; font-weight: bold; }
/* --- CONTACTO --- */
.contact {
padding: 80px 5%;
background-color: var(--primary-color);
color: var(--white);
text-align: center;
}
.contact form {
max-width: 500px;
margin: 30px auto 0;
display: flex;
flex-direction: column;
gap: 15px;
}
.contact input, .contact textarea {
padding: 15px;
border-radius: 5px;
border: none;
font-size: 1rem;
}
.contact button {
background-color: var(--accent-color);
border: none;
color: var(--white);
font-size: 1.1rem;
cursor: pointer;
}
/* --- FOOTER --- */
footer {
text-align: center;
padding: 20px;
background: #020617;
color: #64748b;
font-size: 0.9rem;
}
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
.hero h1 { font-size: 2rem; }
.hero-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-outline { margin-left: 0; }
nav { display: none; } /* Menú simplificado para móvil */
}
</style>
</head>
<body>
<header>
<div class="logo">Qub<span>.</span></div>
<nav>
<ul>
<li><a href="#servicios">Servicios</a></li>
<li><a href="#zas" class="nav-zas">Producto Zas ✨</a></li>
<li><a href="#contacto">Contacto</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Software inteligente para PyMES<br>en Venezuela 🇻🇪</h1>
<p>En <strong>Qub</strong>, desarrollamos soluciones tecnológicas a medida y creamos productos que entienden tu economía. Transformamos negocios locales en empresas digitales.</p>
<div class="hero-buttons">
<a href="#contacto" class="btn btn-primary">Cotizar Proyecto</a>
<a href="#zas" class="btn btn-outline">Conocer Zas POS</a>
</div>
</section>
<section id="servicios" class="services">
<div class="section-title">
<h2>Soluciones a tu medida</h2>
<p>No te conformes con software genérico. Creamos lo que realmente necesitas.</p>
</div>
<div class="cards-container">
<div class="card">
<span class="icon">💻</span>
<h3>Desarrollo Web & Software</h3>
<p>Aplicaciones web robustas, sistemas de gestión internos y plataformas e-commerce adaptadas a pasarelas de pago locales.</p>
</div>
<div class="card">
<span class="icon">🚀</span>
<h3>Transformación Digital</h3>
<p>Automatizamos tus hojas de cálculo y procesos manuales. Ahorra tiempo y reduce errores operativos en tu empresa.</p>
</div>
<div class="card">
<span class="icon">☁️</span>
<h3>Consultoría Cloud</h3>
<p>Te ayudamos a migrar a la nube de forma segura, garantizando que tu negocio siga operando incluso si falla la luz.</p>
</div>
</div>
</section>
<section id="zas" class="zas-section">
<div class="zas-content">
<span class="badge">Nuevo Lanzamiento MVP</span>
<h2>Zas: El Punto de Venta ágil.</h2>
<p>Desarrollamos <strong>Zas</strong> pensando en el mostrador venezolano. Un software POS ligero, rápido y diseñado para la realidad económica actual.</p>
<br>
<ul class="zas-list">
<li><span class="check"></span> <strong>Multi-moneda:</strong> Cobra en Bs, USD o Euros.</li>
<li><span class="check"></span> <strong>Súper Ligero:</strong> Corre en cualquier PC o Laptop básica.</li>
<li><span class="check"></span> <strong>Inventario Simple:</strong> Control de stock sin complicaciones.</li>
</ul>
<br>
<a href="#contacto" class="btn btn-zas">Probar Demo Beta</a>
</div>
<div class="zas-visual">
<div style="background: #f1f5f9; height: 150px; border-radius: 8px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; color: #94a3b8;">
[ Pantalla de Ventas Zas ]
</div>
<h4 style="color: var(--primary-color);">Interfaz Limpia y Rápida</h4>
<p style="font-size: 0.9rem; color: var(--text-gray);">Olvídate de sistemas lentos y complejos.</p>
</div>
</section>
<section id="contacto" class="contact">
<h2>¿Listo para modernizar tu negocio?</h2>
<p>Ya sea un desarrollo a la medida con <strong>Qub</strong> o probar <strong>Zas</strong>, hablemos.</p>
<form action="#" method="POST"> <input type="text" placeholder="Tu Nombre" required>
<input type="email" placeholder="Tu Correo Electrónico" required>
<select style="padding: 15px; border-radius: 5px; border: none; width: 100%;">
<option value="">¿Qué te interesa?</option>
<option value="medida">Desarrollo de Software a Medida</option>
<option value="zas">Lista de Espera - Zas POS</option>
<option value="otro">Consultoría General</option>
</select>
<textarea rows="4" placeholder="Cuéntanos un poco sobre tu proyecto..." required></textarea>
<button type="submit" class="btn">Enviar Mensaje</button>
</form>
</section>
<footer>
<p>&copy; 2024 Qub Solutions. Desarrollado con orgullo en Venezuela 🇻🇪</p>
<p style="font-size: 0.8rem; margin-top: 5px;">contacto@qub.com.ve</p>
</footer>
</body>
</html>

12
package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "qub-landing",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}