From 47631fc863da088d373151d4ec757873fd752816 Mon Sep 17 00:00:00 2001 From: Kevin Kipp Date: Tue, 19 Aug 2025 18:12:58 -0500 Subject: [PATCH] August 2025 --- src/App.tsx | 4 ++-- src/slides/agenda-2025-08.tsx | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 src/slides/agenda-2025-08.tsx diff --git a/src/App.tsx b/src/App.tsx index 02a45a1..6a65193 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,7 +5,7 @@ import Notes from "reveal.js/plugin/notes/notes"; import "reveal.js/dist/reveal.css"; import "./styles/index.scss"; import Splash from "./slides/splash"; -import Agenda202507 from "./slides/agenda-2025-07"; +import Agenda202508 from "./slides/agenda-2025-08"; import Thanks from "./slides/thanks"; function App() { @@ -46,7 +46,7 @@ function App() {
- +
diff --git a/src/slides/agenda-2025-08.tsx b/src/slides/agenda-2025-08.tsx new file mode 100644 index 0000000..fac0a5d --- /dev/null +++ b/src/slides/agenda-2025-08.tsx @@ -0,0 +1,22 @@ +const Agenda202508 = () => { + return ( +
+
+
+

Agenda

+
    +
  1. Welcome!
  2. +
  3. Shirts!
  4. +
  5. ⚡️ From Promt Engineering to Custom Agents
  6. +
  7. ⚡️ Dev Containers
  8. +
  9. ⚡️ Event Driven Architectures
  10. +
  11. 🎤 Building for Everyone
  12. +
  13. Wrap up
  14. +
+
+
+
+ ); +}; + +export default Agenda202508;