File tree Expand file tree Collapse file tree 5 files changed +86
-0
lines changed
Expand file tree Collapse file tree 5 files changed +86
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy MechMind Site
2+
3+ on :
4+ push :
5+ branches : ["main"]
6+ workflow_dispatch :
7+
8+ jobs :
9+ deploy :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+ - name : Build
14+ run : |
15+ echo "🤖 Construyendo sitio MechMind..."
16+ mkdir -p public
17+ cp -r * public/
18+ - uses : peaceiris/actions-gh-pages@v3
19+ with :
20+ github_token : ${{ secrets.GITHUB_TOKEN }}
21+ publish_dir : ./public
Original file line number Diff line number Diff line change 1+
2+ # STRUCTURA
3+ mechmind-dwv.github.io/
4+ ├── index.html # Página principal con efecto robótico
5+ ├── _ config.yml # Configuración personalizada
6+ ├── assets/
7+ │ ├── css/mechmind.css # Estilos con animaciones
8+ │ └── js/particles.js # Efectos visuales
9+ └── .github/workflows/
10+ └── pages.yml # Deployment automático
Original file line number Diff line number Diff line change 1+ theme : jekyll-theme-hacker
Original file line number Diff line number Diff line change 1+ : root {
2+ --mechmind-primary : # FF00FF ;
3+ --mechmind-bg : # 0D1117 ;
4+ }
5+
6+ body {
7+ background : var (--mechmind-bg );
8+ font-family : 'Courier New' , monospace;
9+ }
10+
11+ .cyber-terminal {
12+ border : 2px dashed var (--mechmind-primary );
13+ padding : 2rem ;
14+ margin : 5% auto;
15+ max-width : 800px ;
16+ }
17+
18+ .cyber-button {
19+ background : black;
20+ color : var (--mechmind-primary );
21+ border : 1px solid;
22+ padding : 1rem 2rem ;
23+ text-decoration : none;
24+ transition : all 0.3s ;
25+ }
26+
27+ .cyber-button : hover {
28+ text-shadow : 0 0 10px var (--mechmind-primary );
29+ box-shadow : 0 0 20px var (--mechmind-primary );
30+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html lang ="es ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < title > MechMind-dwv | 🤖 + 🧑🚀</ title >
6+ < link rel ="stylesheet " href ="assets/css/mechmind.css ">
7+ </ head >
8+ < body >
9+ < div class ="cyber-terminal ">
10+ < h1 > ¡Hola Mundo! 👾</ h1 >
11+ < pre id ="typewriter ">
12+ < span class ="type "> $ git commit -m "Iniciando sitio épico"</ span >
13+ < span class ="type "> $ cargo build --release</ span >
14+ < span class ="type "> > Inicializando MechBot...</ span >
15+ </ pre >
16+ < div class ="grid ">
17+ < a href ="https://github.com/mechmind-dwv " class ="cyber-button "> Ver Perfil</ a >
18+ < a href ="https://mechmind-dwv.github.io/mechbot " class ="cyber-button "> Proyecto Estrella</ a >
19+ </ div >
20+ </ div >
21+ < canvas id ="particles "> </ canvas >
22+ < script src ="assets/js/particles.js "> </ script >
23+ </ body >
24+ </ html >
You can’t perform that action at this time.
0 commit comments