0247b979ca
Segunda iteración del rediseño (sesión separada con skill impeccable). Toca prácticamente toda la UI: layout base, tokens (global.css), todas las páginas de alumno y admin, componentes de solicitudes, inventario, catálogo, filtros, toaster y modales. Docs y sistema: - DESIGN.md y PRODUCT.md actualizados con la nueva iteración. - .impeccable/design.json refleja tokens vigentes. - .impeccable/review/ contiene screenshots de la revisión visual. Dependencias: - Añade @fontsource-variable/jetbrains-mono (fuente monoespaciada). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
1.9 KiB
Plaintext
43 lines
1.9 KiB
Plaintext
---
|
|
import '@/styles/global.css';
|
|
|
|
interface Props {
|
|
title?: string;
|
|
}
|
|
const { title = 'Sistema de Préstamos — Laboratorio UABC' } = Astro.props;
|
|
---
|
|
<!doctype html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="theme-color" content="#f4efea" />
|
|
<meta name="color-scheme" content="light" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<title>{title}</title>
|
|
</head>
|
|
<body>
|
|
<!--
|
|
THESIS: Trade the institutional-green bitácora look for MotherDuck's crayon-terminal-on-cream
|
|
neobrutalism, per a fully pinned user brief — hard edges and offset shadow instead of soft,
|
|
rounded institutional polish.
|
|
OWN-WORLD: Cream Paper canvas, Frost White cards, Charcoal Ink borders/text everywhere, Sky
|
|
Crayon as the sole filled-action color, Coral Sketch for danger, Mint Sketch for positive
|
|
status, Duck Bill Orange as sparse accent, JetBrains Mono throughout, 2px radius everywhere,
|
|
-6px/6px hard offset shadow with press-in hover on buttons and modals.
|
|
STORY: alumno/admin still request, approve, and return lab equipment; the interface now reads
|
|
like a terminal readout instead of a soft green form.
|
|
FIRST VIEWPORT: login card — cream page, white bordered card, charcoal offset shadow, uppercase
|
|
mono headline, sky-blue press button.
|
|
FORM: user-pinned brief (MotherDuck DESIGN.md) — concept roll skipped per "the brief wins."
|
|
FINISH: unreviewed and undocumented is unfinished; this build ends with the finish review, the
|
|
verdict, DESIGN.md, and every shipping raster carrying its provenance.
|
|
-->
|
|
<a href="#main" class="sr-only focus:not-sr-only focus:absolute focus:top-2 focus:left-2 btn btn-primary z-50">
|
|
Saltar al contenido
|
|
</a>
|
|
<slot />
|
|
</body>
|
|
</html>
|