-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
52 lines (52 loc) · 2.86 KB
/
Copy pathabout.html
File metadata and controls
52 lines (52 loc) · 2.86 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>InteeBuild — Presentacion</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header class="topbar">
<div class="brand"><span class="logo"><img src="./assets/icon.svg" width="20" height="20" alt="IB"></span><div class="brand-txt"><strong>InteeBuild</strong><small>web a APK/AAB</small></div></div>
<a href="./index.html" class="btn primary">Ir al Builder</a>
</header>
<main style="max-width:900px">
<section class="hero" style="text-align:center;padding:40px 0">
<h1 style="font-size:36px">Convierte tu web en una app nativa en minutos</h1>
<p class="sub" style="margin:0 auto">Sin registro, sin SDK local, compilacion en la nube con GitHub Actions. Soporte para 18 permisos, firma personalizada y PWA.</p>
<div style="margin-top:20px;display:flex;gap:10px;justify-content:center">
<a href="./index.html" class="btn primary">Crear mi app</a>
<a href="https://github.com/Fluxionics/InteeBuild" class="btn ghost">Ver codigo</a>
</div>
</section>
<section class="card">
<h2>Como funciona</h2>
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:16px;text-align:center">
<div><div style="font-size:28px;margin-bottom:8px">1</div><b>Ingresa tu URL o HTML</b><p class="hint">Analizamos compatibilidad y detectamos PWA.</p></div>
<div><div style="font-size:28px;margin-bottom:8px">2</div><b>Personaliza</b><p class="hint">Nombre, icono, colores, splash y permisos.</p></div>
<div><div style="font-size:28px;margin-bottom:8px">3</div><b>Compila y descarga</b><p class="hint">APK, AAB o ZIP con diagnostico y logs.</p></div>
</div>
</section>
<section class="card">
<h2>Para quien es</h2>
<ul>
<li>Desarrolladores que quieren control real sin usar Median o WebViewGold.</li>
<li>Negocios locales que necesitan su web como app para Play Store.</li>
<li>Creadores que usan HTML directo sin hosting.</li>
</ul>
</section>
<section class="card">
<h2>Transparencia</h2>
<p>Codigo abierto MIT. Tu keystore solo vive 60 minutos en una rama temporal y se borra automaticamente. Los anuncios son solo dos iframes externos y no acceden a tu token.</p>
<div style="display:flex;gap:10px;flex-wrap:wrap">
<a href="./privacy.html" class="btn ghost">Privacidad</a>
<a href="./terms.html" class="btn ghost">Terminos</a>
<a href="./license.html" class="btn ghost">Licencia</a>
<a href="https://github.com/Fluxionics/InteeBuild" class="btn ghost">GitHub</a>
</div>
</section>
</main>
<footer><span>InteeBuild</span><span class="sep">·</span><a href="./privacy.html">Privacidad</a><span class="sep">·</span><a href="./terms.html">Terminos</a><span class="sep">·</span><a href="./license.html">Licencia</a></footer>
</body>
</html>