Skip to content

Commit 75ee4f9

Browse files
Add September 2025 meetup agenda slide (#15)
* Add September 2025 meetup agenda slide Copy August 2025 agenda content to create new September slide file and update App.tsx to include it in the presentation. Closes #14 Co-authored-by: Kevin Kipp <third774@users.noreply.github.com> * Update talks --------- Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: Kevin Kipp <third774@users.noreply.github.com>
1 parent 107a125 commit 75ee4f9

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import "reveal.js/dist/reveal.css";
66
import "./styles/index.scss";
77
import Splash from "./slides/splash";
88
import Agenda202508 from "./slides/agenda-2025-08";
9+
import Agenda202509 from "./slides/agenda-2025-09";
910
import Thanks from "./slides/thanks";
1011

1112
function App() {
@@ -47,6 +48,7 @@ function App() {
4748
<div className="slides">
4849
<Splash />
4950
<Agenda202508 />
51+
<Agenda202509 />
5052
<Thanks />
5153
</div>
5254
</div>

src/slides/agenda-2025-09.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
const Agenda202509 = () => {
2+
return (
3+
<section>
4+
<div className="agendaWrapper">
5+
<div className="agenda">
6+
<h2>Agenda</h2>
7+
<ol>
8+
<li>Welcome!</li>
9+
<li>Shirts!</li>
10+
<li>⚡️ Angular AI Tutor</li>
11+
<li>
12+
🎤 Orthogonality and Redundancy (Service layers with EffectTS)
13+
</li>
14+
<li>Wrap up</li>
15+
</ol>
16+
</div>
17+
</div>
18+
</section>
19+
);
20+
};
21+
22+
export default Agenda202509;
23+

0 commit comments

Comments
 (0)