diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 086fda9..d9b476a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,7 +27,7 @@ jobs: run: | mkdir -p ./_site cp website/index.html website/archive.html website/styles.css website/light-theme.css website/theme-toggle.js website/github-cookie-consent.js ./_site/ - cp -r website/es website/pt_BR ./_site/ + cp -r website/es website/pt_BR website/assets ./_site/ touch ./_site/.nojekyll - uses: actions/configure-pages@1f0c5cde4bc74cd7e1254d0cb4de8d49e9068c7d # v4.0.0 diff --git a/website/assets/github-mark-black.svg b/website/assets/github-mark-black.svg new file mode 100644 index 0000000..4f46bf3 --- /dev/null +++ b/website/assets/github-mark-black.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website/assets/github-mark-white.svg b/website/assets/github-mark-white.svg new file mode 100644 index 0000000..527ba11 --- /dev/null +++ b/website/assets/github-mark-white.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/website/es/index.html b/website/es/index.html index cc9fb42..d6071bb 100644 --- a/website/es/index.html +++ b/website/es/index.html @@ -3,7 +3,7 @@ - Dev Days + GitHub Dev Days @@ -51,7 +51,11 @@
-

Dev Days

+ +

GitHub Dev Days

Talleres prácticos para dominar GitHub Copilot. Esta temporada de Dev Days se enfoca en la aplicación GitHub Copilot para el desarrollo basado en agentes. Recoge issues, ejecuta agentes, revisa cambios y fusiona pull requests — todo en un solo lugar.

🚀 Ver Talleres diff --git a/website/index.html b/website/index.html index 88d7777..0de473f 100644 --- a/website/index.html +++ b/website/index.html @@ -3,7 +3,7 @@ - Dev Days + GitHub Dev Days @@ -51,7 +51,11 @@
-

Dev Days

+ +

GitHub Dev Days

Hands-on workshops to master GitHub Copilot. This season of Dev Days focuses on the GitHub Copilot app for agent-driven development. Pick up issues, run agents, review changes, and merge pull requests — all in one place.

🚀 Browse Workshops diff --git a/website/pt_BR/index.html b/website/pt_BR/index.html index cd98c76..a50d7bc 100644 --- a/website/pt_BR/index.html +++ b/website/pt_BR/index.html @@ -3,7 +3,7 @@ - Dev Days + GitHub Dev Days @@ -51,7 +51,11 @@
-

Dev Days

+ +

GitHub Dev Days

Workshops práticos para dominar o GitHub Copilot. Esta temporada do Dev Days é focada no aplicativo GitHub Copilot para desenvolvimento baseado em agentes. Pegue issues, execute agentes, revise mudanças e faça merge de pull requests — tudo em um único lugar.

🚀 Ver Workshops diff --git a/website/styles.css b/website/styles.css index dfc95cd..41650f3 100644 --- a/website/styles.css +++ b/website/styles.css @@ -13,6 +13,12 @@ body { font-family: 'Space Grotesk', sans-serif; background: var(--bg-dark); col body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px), linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; z-index: -1; } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .hero { padding: 6rem 0 2.5rem; text-align: center; position: relative; } +/* Official, unmodified artwork from https://brand.github.com/GitHub_Logos.zip. */ +.hero-logo { width: 64px; margin: 0 auto 1.5rem; } +.hero-logo img { display: block; width: 100%; height: auto; } +.hero-logo .github-mark-light { display: none; } +html[data-theme="light"] .hero-logo .github-mark-dark { display: none; } +html[data-theme="light"] .hero-logo .github-mark-light { display: block; } .hero-badge { display: inline-block; padding: 0.5rem 1rem; background: rgba(0,245,255,0.1); border: 1px solid var(--neon-cyan); border-radius: 50px; font-size: 0.875rem; color: var(--neon-cyan); margin-bottom: 2rem; font-family: 'JetBrains Mono', monospace; } .hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; margin-bottom: 1rem; background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2rem; }