Skip to content

Commit 59ee7a3

Browse files
committed
fix: add new presentation on useEffect and update layout to grid
1 parent 1578fbb commit 59ee7a3

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/components/Presentations.astro

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
import { Icon } from "astro-icon/components";
33
44
const presentations = [
5+
{
6+
title: "Using effects effectively: A Deep Dive Into The useEffect Hook",
7+
description:
8+
"A deep dive into the useEffect hook, how it works, how to use it effectively and common pitfalls",
9+
siteUrl:
10+
"https://docs.google.com/presentation/d/1MK3Hrkw-rDUd1p5TRHI7okgMPMzz5kxrRjx0MIa1srA",
11+
tags: ["React"],
12+
},
513
{
614
title: "HTML, CSS, JS - The Basics",
715
description: `An introduction lecture into the basics of HTML, CSS & JS`,
@@ -24,7 +32,7 @@ const presentations = [
2432
];
2533
---
2634

27-
<div class="flex flex-wrap gap-y-2 gap-x-8">
35+
<div class="grid grid-cols-1 md:grid-cols-2 gap-y-2 gap-x-8">
2836
{
2937
presentations.map((presentation) => (
3038
<li class="flex flex-col gap-2 md:flex-1 w-full">

0 commit comments

Comments
 (0)