Skip to content

Commit 165c31e

Browse files
committed
5 keynoters.
1 parent 37438ad commit 165c31e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/components/keynoters/keynoters.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { getCollection } from "astro:content";
77
88
const keynoters = await getCollection("keynoters");
99
10-
const placeholders = Math.max(0, 3 - keynoters.length);
10+
const placeholders = Math.max(0, 5 - keynoters.length);
1111
---
1212

1313
<section class="prose-xl relative my-12 px-6">
@@ -81,7 +81,7 @@ const placeholders = Math.max(0, 3 - keynoters.length);
8181

8282
<Headline id="keynoters" title="Keynote Speakers" />
8383

84-
<ul class="p-0 mt-12 flex gap-6 flex-wrap">
84+
<ul class="p-0 mt-12 flex gap-6 flex-wrap justify-center">
8585
{
8686
keynoters
8787
.sort((a, b) => a.data.order - b.data.order)
@@ -115,7 +115,7 @@ const placeholders = Math.max(0, 3 - keynoters.length);
115115
}
116116
</ul>
117117

118-
<div class="flex items-end flex-col pr-6">
118+
<div class="flex items-center flex-col pr-6">
119119
<div class="text-center">
120120
<h3 class="font-bold text-3xl mb-4">
121121
<span class="text-body-light inline-block mr-2">#</span>

src/content/keynoters/savannah.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ name: Savannah Ostrowski
33
image: ./savannah.png
44
slug: savannah-ostrowski
55
tagline: CPython Core Developer & JIT Maintainer
6-
order: 2
6+
order: 3
77
---

src/content/keynoters/sebastian.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ name: Sebastián Ramírez (tiangolo)
33
image: ./sebastian.jpg
44
slug: sebastian-ramirez
55
tagline: Creator of FastAPI, Typer, and other open source tools
6-
order: 3
6+
order: 2
77
---

0 commit comments

Comments
 (0)