Skip to content

Commit 6fe90ca

Browse files
committed
more improvements
1 parent e26d483 commit 6fe90ca

4 files changed

Lines changed: 19 additions & 8 deletions

File tree

src/content/prose/about.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
**Python Pizza**, an annual micro conference originating from Naples in 2017, has made its mark in various cities in Germany, Italy, Cuba, Czechia, Poland, as well as in remote formats. Now it's Istanbul's turn to host this amazing Python community event!
1+
**Python Pizza**, an annual micro conference originating from Naples in 2017, has made its mark in various cities in Germany, Italy, Cuba, Czechia, Poland, as well as in remote formats.
2+
3+
Now it's Istanbul's turn to host this amazing Python community event,
4+
5+
**for the first time in Turkey**!
26

37
Organized entirely by volunteers, we bring the Python Community together for some amazing original Pizza™ and Python Talks.
48

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import Footer from "@components/Footer.astro";
88
import EventJsonLd from "@components/EventJsonLd.astro";
99
import Hero from "@sections/Hero.astro";
1010
import Sponsors from "@sections/Sponsors.astro";
11-
// import Schedule from "@sections/Schedule.astro"; // re-enable once the program is set
12-
import Organizers from "@sections/Organizers.astro"; // re-enable once organizers are confirmed
11+
// import Schedule from "@sections/Schedule.astro";
12+
import Organizers from "@sections/Organizers.astro";
1313
// import Venue from "@sections/Venue.astro";
1414
import AboutContent from "@prose/about.mdx";
1515
import CfpContent from "@prose/cfp.mdx";

src/sections/Organizers.astro

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,24 @@ import { Image } from "astro:assets";
44
import Section from "@components/Section.astro";
55
import Prose from "@components/Prose.astro";
66
import SocialLink from "@components/SocialLink.astro";
7+
import { event } from "@data/event";
78
8-
const organizers = (await getCollection("organizers")).sort(() => Math.random() - 0.5);
9+
const organizers = (await getCollection("organizers")).sort(
10+
() => Math.random() - 0.5,
11+
);
912
---
1013

1114
<Section id="organizers" title="Organizers">
1215
<Prose>
1316
<p>
14-
Python Pizza is brought to life by volunteers. Everyone from our organizing team to our amazing
17+
{event.name} is brought to life by volunteers. Everyone from our organizing team to our amazing
1518
speakers are donating their time to make this event happen.
1619
</p>
17-
<p>By the community for the community.</p>
20+
<p>
21+
If you want to join us organize, and have fun,&nbsp;
22+
<a href={`mailto:${event.contactEmail}`}>drop us a line</a>!
23+
</p>
24+
<p><strong><em>By the community, for the community.</em></strong></p>
1825
</Prose>
1926

2027
<div class="grid grid-cols-2 place-items-center gap-x-4 gap-y-10 sm:flex sm:flex-wrap sm:justify-center sm:gap-16 mt-12">

src/styles/global.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@
6969

7070
@layer components {
7171
.section-sm {
72-
@apply max-w-3xl mx-auto px-8 py-8 md:py-12;
72+
@apply max-w-3xl mx-auto px-8 py-8;
7373
}
7474

7575
.section-lg {
76-
@apply max-w-240 mx-auto px-8 py-8 md:py-12;
76+
@apply max-w-240 mx-auto px-8 py-8;
7777
}
7878

7979
.prose-content {

0 commit comments

Comments
 (0)