This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Catálogo de Gradientes - Framework DJ</title> | |
<style> | |
body { font-family: system-ui, sans-serif; background-color: #1a1a1a; color: #fff; padding: 2rem; margin: 0; } | |
h1 { text-align: center; border-bottom: 1px solid #444; padding-bottom: 1rem; margin-bottom: 3rem; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// build.js - Framework DJ v4 (versión blindada) | |
import fs from 'fs'; | |
import path from 'path'; | |
import fse from 'fs-extra'; | |
import { execSync } from 'child_process'; | |
import { loadConfigForBuild } from './lib/config-loader.js'; | |
import yaml from 'js-yaml'; | |
let chalk; | |
try { chalk = (await import('chalk')).default; } catch { chalk = null; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Botón Futurista Mejorado</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"> | |
<style> | |
body { | |
background-color: #010510; | |
margin: 40px; |