Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ node_modules/
dist/
web/dist/
*.log
*.tsbuildinfo
.DS_Store

# Machine-local runtime config (generated on first run from a fresh scan).
Expand Down
13 changes: 13 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,20 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#0E0B0A" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<title>launchpad · Fervon</title>
<meta name="description" content="Lanza todos tus proyectos locales. Descubre, arranca y monitoriza con puertos sin colisión." />
<meta property="og:type" content="website" />
<meta property="og:title" content="launchpad · Fervon" />
<meta property="og:description" content="Lanza todos tus proyectos locales. Descubre, arranca y monitoriza con puertos sin colisión." />
<meta property="og:image" content="/og.svg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="launchpad · Fervon" />
<meta name="twitter:description" content="Lanza todos tus proyectos locales. Descubre, arranca y monitoriza con puertos sin colisión." />
<meta name="twitter:image" content="/og.svg" />
</head>
<body>
<div id="root"></div>
Expand Down
20 changes: 20 additions & 0 deletions web/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web/public/fonts/inter-var.woff2
Binary file not shown.
82 changes: 82 additions & 0 deletions web/public/og.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion web/src/styles/tokens.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,19 @@
* Tema "carbón + brasa": fondo carbón oscuro, texto hueso, acentos de fuego
* ember/ámbar. Cada componente referencia estas variables, nunca un hex literal,
* así que reteñir la paleta aquí re-viste todo el dashboard de un solo cambio.
* Sin fuentes/iconos externos — stack del sistema + glifos Unicode.
* Tipografía Inter autoalojada (woff2 variable, sin CDN — CSP estricta);
* cae a la pila del sistema si el woff2 no carga. Iconos = glifos Unicode.
* Paleta canónica Fervon: --carbon #0E0B0A · --card #1A1310 · --line #2C211B
* --ember #FF6A00 · --brasa #E0480F · --amber #FFB02E · --bone #EFE7DC.
*/
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 100 900;
font-display: swap;
src: url('/fonts/inter-var.woff2') format('woff2');
}

:root {
/* ---------- Fervon carbon ramp (mapeado sobre los slots "slate") ---------- */
--slate-0: #0e0b0a; /* fondo de la app (carbón más profundo) */
Expand Down
1 change: 0 additions & 1 deletion web/tsconfig.tsbuildinfo

This file was deleted.

Loading