Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import "reveal.js/dist/reveal.css";
import "./styles/index.scss";
import Splash from "./slides/splash";
import Thanks from "./slides/thanks";
import Agenda202603 from "./slides/agenda-2026-03";
import Contribute from "./slides/contribute";
import Agenda202604 from "./slides/agenda-2026-04";

function App() {
const deckDivRef = useRef<HTMLDivElement>(null); // reference to deck container div
Expand Down Expand Up @@ -47,7 +47,7 @@ function App() {
<div className="reveal" ref={deckDivRef}>
<div className="slides">
<Splash />
<Agenda202603 />
<Agenda202604 />
<Contribute />
<Thanks />
</div>
Expand Down
23 changes: 23 additions & 0 deletions src/slides/agenda-2026-04.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
const Agenda202604 = () => {
return (
<section>
<div className="agendaWrapper">
<div className="agenda">
<img src="https://c.tenor.com/LhIysipvdrIAAAAd/tenor.gif" alt="" />
<h2>Agenda</h2>
<ol>
<li>Welcome!</li>
<li>Shirts!</li>
<li>🌩️ From Levels to Learning: Building an ML System for Game Difficulty</li>
<li>🌩️ Caging Chaos: Building Deterministic AI Chatbots with Effect</li>
<li>🌩️ A Charting library for Agents: Building Spec-Driven Visualizations with OpenChart</li>
<li>🌩️ Teaching Your AI to See: Validating agentic UI development flows</li>
<li>Wrap up</li>
</ol>
</div>
</div>
</section>
);
};

export default Agenda202604;
5 changes: 5 additions & 0 deletions src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ sl-qr-code {
.agenda {
color: $black;
--r-link-color: var(--r-link-color-dark);

img {
display: block;
margin: 16px auto;
}
}

.quadrants {
Expand Down
Loading