From e1924ad4f208a47055b98d564e848f9d790a0d68 Mon Sep 17 00:00:00 2001 From: Pulse Agent Date: Wed, 20 May 2026 19:57:33 -0300 Subject: [PATCH] =?UTF-8?q?deploy:=20test-octal=20deploy=20docs=20?= =?UTF-8?q?=E2=80=94=20Dockerfile=20nginx=20+=20runbook?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- runbooks/Dockerfile | 4 + runbooks/index.html | 403 +++++++++++++++++++++++++++++++++ runbooks/test-octal-dockerfile | 5 + 3 files changed, 412 insertions(+) create mode 100644 runbooks/Dockerfile create mode 100644 runbooks/index.html create mode 100644 runbooks/test-octal-dockerfile diff --git a/runbooks/Dockerfile b/runbooks/Dockerfile new file mode 100644 index 0000000..3b5434e --- /dev/null +++ b/runbooks/Dockerfile @@ -0,0 +1,4 @@ +FROM nginx:alpine +COPY index.html /usr/share/nginx/html/index.html +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"] diff --git a/runbooks/index.html b/runbooks/index.html new file mode 100644 index 0000000..e3fe733 --- /dev/null +++ b/runbooks/index.html @@ -0,0 +1,403 @@ + + + + + + Pulse 3D — Landing Page Imersiva + + + + + + +
+
⚡ PULSE 3D
+ +
CARREGANDO CENA 3D
+
+ + +
+
 Pulse-3d-landing · Imersivo
+

+ Pulse 3D
+ + Landing Page · Design Tokens · Three.js + +

+

+ Landing page disruptiva, imersiva e 100% componentizada em 3D dinâmico. + Atomic Design · Design Tokens · React Three Fiber · Framer Motion. +

+
+ + +
+
Scroll para explorar
+
+ + +
+ +

6 Pilares do
Design System

+

Cada componente desenhado para ser reutilizável, testável e escalável — do átomo ao deploy.

+
+
+
⚛️
+

Atomic Design

+

11 Átomos · 3 Moléculas · 2 Organismos · 2 Templates · 1 Página. Cada nível isolado, testável.

+
+
+
🎨
+

Design Tokens

+

8 domínios: space / font / color / shadow / radius / material3d / camera3d / animation — 100% dinâmicos.

+
+
+
🎬
+

Scrollytelling

+

Scroll move a câmera 3D — experiência cinemática onde o usuário dirige a narrativa.

+
+
+
+

Micro-interações

+

Botões vivos com glow pulsante, hover 3D scale, partículas orgânicas — cada átomo responde.

+
+
+
+

WCAG / A11y

+

Acessibilidade por padrão: semântica, focos visíveis, skip-links, ARIA labels, contraste AAA.

+
+
+
🚀
+

Core Web Vitals

+

Hot path otimizado. Code splitting, LCP < 2.5s, INP < 200ms, CLS < 0.1 — por padrão.

+
+
+
+ + +
+
+

Tecnologias usadas

+

A stack que alimenta a experiência 3D

+
+ React 18 + TypeScript + Vite + Three.js + @react-three/fiber + @react-three/drei + Framer Motion + S.O.L.I.D. + Atomic Design + CSS Custom Properties + WCAG 2.1 AA + Core Web Vitals +
+
+
+ + +
+ +

De átomos a
organismos vivos

+

A hierarquia de componentes em ação — cada nível herda os tokens dos níveis abaixo.

+
+
+
⚛️ Atoms — 11
+
+ ButtonBadge + CardGradientText + FloatingTextLightGlow + FloatingMeshParticleField + ThemeToggleDivider + Typography +
+
+
+
🔗 Molecules — 3
+
+ FloatingMeshParticleField + FeatureCard3d +
+
+
+
🦠 Organisms — 2
+
+ HeroScene3dFeaturesScene3d +
+
+
+
📐 Templates — 2
+
+ SceneCanvasThreePage +
+
+
+
📄 Page — 1
+
+ App.tsx + Hero + Features + About + CTA + ~ 500 lines +
+
+
+
+ + +
+
+
+
11
+
Átomos
+
+
+
8
+
Domínios de Tokens
+
+
+
3D
+
Cena Interativa
+
+
+
WCAG
+
AAA Acessível
+
+
+
+ + +
+

Transforme seu produto em
+ uma experiência 3D +

+

Do primeiro átomo ao deploy em produção. Design systems vivos que escalam com seu time.

+
+ + +
+
+ + + + + + + diff --git a/runbooks/test-octal-dockerfile b/runbooks/test-octal-dockerfile new file mode 100644 index 0000000..d5d113c --- /dev/null +++ b/runbooks/test-octal-dockerfile @@ -0,0 +1,5 @@ +# Stage 1: build — nginx com HTML injetado +FROM nginx:alpine +COPY index.html /usr/share/nginx/html/index.html +EXPOSE 80 +CMD ["nginx", "-g", "daemon off;"]