From 71db394976cac9f60d1b555a290a6492c28e668b Mon Sep 17 00:00:00 2001 From: Lucas Castro Date: Tue, 18 Aug 2026 17:45:02 -0500 Subject: [PATCH] Add aug agenda --- src/App.tsx | 4 ++-- src/slides/agenda-2026-08.tsx | 22 ++++++++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) create mode 100644 src/slides/agenda-2026-08.tsx diff --git a/src/App.tsx b/src/App.tsx index 00a9b53..aebeb3a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -7,7 +7,7 @@ import "./styles/index.scss"; import Splash from "./slides/splash"; import Thanks from "./slides/thanks"; import Contribute from "./slides/contribute"; -import Agenda202604 from "./slides/agenda-2026-04"; +import Agenda202608 from "./slides/agenda-2026-08"; function App() { const deckDivRef = useRef(null); // reference to deck container div @@ -47,7 +47,7 @@ function App() {
- +
diff --git a/src/slides/agenda-2026-08.tsx b/src/slides/agenda-2026-08.tsx new file mode 100644 index 0000000..185d2a9 --- /dev/null +++ b/src/slides/agenda-2026-08.tsx @@ -0,0 +1,22 @@ +const Agenda202608 = () => { + return ( +
+
+
+ +

Agenda

+
    +
  1. Welcome!
  2. +
  3. Shirts!
  4. +
  5. ⚡ Onboard Agents like a member of your team with Sickr by Arif M.
  6. +
  7. 🌩️ The Canary in the Codebase by Riley Hilliard
  8. +
  9. 🌩️ Take the Keys Away From Your Agent by David Bowman
  10. +
  11. Wrap up
  12. +
+
+
+
+ ); +}; + +export default Agenda202608;