diff --git a/briques-du-web.md b/briques-du-web.md
deleted file mode 100644
index eaa6480..0000000
--- a/briques-du-web.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Imba, a qui intro
-
-* Compiles to Javascript
-* Fast fast (Syntax, DOM 'groundbreaking' memoization)
-
-* Compiles to Javascript
-* Node, NPM (you can reuse the whole libraries ecosystem)
-* Front and Back end
-
-* Created by a company called Scrimba (Code learning platform)
-* Why create language in your space?
-
-* Hello World and VSCode plugin
-* Electron???
-* Imbaconfig.json
-* Build, watch, start -> No tests? watch by default
-
-Nice types :
-
-let length = 20px
-let duration = 150ms
-let regex = /answer is (\d+)/
-
-const list =
- "Remember milk"
- "Greet visitor"
-
-tag todo-item
- css .input color:gray8 bg@hover:gray1
-
- def render
-
-
- data.title
- 'x'
-
-css -> file by default, global can be used
-
-type annotations
-
-def multiply a\number, b\number
- a * b
-
-
-No need for - in web components?
-
-size, perf, generated, no js? support?
-documentation and support
\ No newline at end of file
diff --git a/documentation.png b/deck/documentation.png
similarity index 100%
rename from documentation.png
rename to deck/documentation.png
diff --git a/error-json.png b/deck/error-json.png
similarity index 100%
rename from error-json.png
rename to deck/error-json.png
diff --git a/errors.png b/deck/errors.png
similarity index 100%
rename from errors.png
rename to deck/errors.png
diff --git a/deck/functions.png b/deck/functions.png
new file mode 100644
index 0000000..4679be1
Binary files /dev/null and b/deck/functions.png differ
diff --git a/deck/imba.md b/deck/imba.md
new file mode 100644
index 0000000..2ab9992
--- /dev/null
+++ b/deck/imba.md
@@ -0,0 +1,84 @@
+# Imba : Le développement web rapide rapide
+
+---
+
+## En 2 secondes
+
+* Compile vers du JavaScript
+* Rapide rapide :) (Syntaxe efficace, DOM memoization)
+* Node, NPM (tout l'écosystème reste disponible)
+* Front and Back end
+
+---
+
+## La genèse
+
+* Imba a été crée par Scrimba.
+* Tout le site est basé sur cette stack.
+* Tutoriels interactifs pour remplacer les bootcamps
+
+---
+
+## Prise en main : Le top!
+
+* Zero config
+* WebApp ou electron avec HelloWorld
+* Un plugin VSCode avec tous les goodies habituels
+* Live reloading, build, ... Pas de tests?
+
+---
+
+## Quelques goodies : Les types de variables
+
+
+
+
+---
+
+## Fonctions et inférence de types
+
+
+
+---
+
+## Tags et Components
+
+
+
+
+---
+
+## Gestion des évènements
+
+---
+
+## Une doc facile à lire mais parfois incomplète
+
+
+
+---
+
+## Des erreurs ... déconcertantes
+
+
+
+---
+
+## Des erreurs ... en JSON!
+
+
+
+---
+
+## Performance : TODO app
+
+
+
+---
+
+## Conclusion
+
+* DOM lisible
+* Syntaxe -> productif
+* Très reconnaissable pour le dév lit
+* Niche et manque de ressources
\ No newline at end of file
diff --git a/deck/imba.pdf b/deck/imba.pdf
new file mode 100644
index 0000000..740f373
Binary files /dev/null and b/deck/imba.pdf differ
diff --git a/deck/performance.png b/deck/performance.png
new file mode 100644
index 0000000..58e054d
Binary files /dev/null and b/deck/performance.png differ
diff --git a/deck/tags.png b/deck/tags.png
new file mode 100644
index 0000000..bf124e0
Binary files /dev/null and b/deck/tags.png differ
diff --git a/deck/variables.png b/deck/variables.png
new file mode 100644
index 0000000..686e277
Binary files /dev/null and b/deck/variables.png differ