Skip to content

Commit 9bc95b2

Browse files
committed
Update headlines.
1 parent e5766d5 commit 9bc95b2

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

src/content/pages/childcare.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import childcareArea from "./images/childcare-area.jpg";
88
import childcareBalls from "./images/childcare-balls.jpg";
99

1010

11-
## Childcare at EuroPython 2025
11+
# Childcare at EuroPython 2025
1212

1313
We’re committed to making EuroPython as inclusive and accessible as possible — and that includes supporting parents attending the conference.
1414

src/content/pages/venue.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Image } from "astro:assets";
88
import venueImage from "./images/prague.jpg";
99
import pccEntrance from "images/entrance5-pcc5.jpg";
1010

11-
## Conference Venue - Prague Congress Centre
11+
# Conference Venue - Prague Congress Centre
1212

1313
[The Prague Congress Centre](https://www.praguecc.cz/en/homepage) will host
1414
EuroPython 2025 from **July 14th to July 20th**. It’s a renowned venue, having

src/pages/jobs.astro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { type CollectionEntry, getEntry, getCollection } from "astro:content";
33
44
import Layout from "@layouts/SectionLayout.astro";
5-
5+
import Headline from "@ui/Headline.astro"
66
import SponsorCard from "@components/SponsorCard.astro";
77
import JobCard from "@components/JobCard.astro";
88
import TwoCols from "@components/TwoCols.astro";
@@ -52,6 +52,8 @@ sponsors.forEach((sponsor) => {
5252
title="EuroPython 2025 | July 14th-20th 2025 | Prague, Czech Republic & Remote"
5353
description="EuroPython is the largest Python conference in Europe. We are looking forward to seeing you in Prague, Czech Republic & Remote from July 14th-20th 2025."
5454
>
55+
56+
<Headline id="jobs" as="h1" title="Job board" />
5557
{
5658
sponsors.map((sponsor) => {
5759
if (!(sponsor.data.jobs && sponsor.data.jobs.length > 0)) return;

src/pages/sessions.astro

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import { getCollection } from "astro:content";
33
import Layout from "../layouts/Layout.astro";
44
import Prose from "../components/prose/prose.astro";
5+
import Headline from "@ui/Headline.astro"
56
import Filter from "../components/sessions/filter.astro";
67
import ListSessions from "../components/sessions/list-sessions.astro";
78
import Section from "@ui/Section.astro";
@@ -26,18 +27,16 @@ const description = "A list of all the sessions at the conference";
2627

2728
<Layout title={title} description={description}>
2829
<Section>
30+
<Headline id="sessions" as="h1" title="List of Sessions" />
2931
<Prose full>
30-
<h1>Sessions</h1>
3132
<p>Here you can find a list of all the sessions at the conference.</p>
3233
<p>You can filter the sessions by track, type, and level.</p>
33-
<h2>Filters</h2>
3434
</Prose>
35+
<Headline id="filters" title="Filters" />
3536

3637
<Filter allTracks={allTracks} allTypes={allTypes} allLevels={allLevels} />
3738

38-
<Prose full>
39-
<h2>List of Sessions</h2>
40-
</Prose>
39+
<Headline id="results" as="h2" title="Search results" />
4140

4241
<ListSessions sessions={sessions} />
4342
</Section>

src/pages/speakers.astro

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
import { getCollection, type CollectionEntry } from "astro:content";
33
import Layout from "@layouts/Layout.astro";
4-
import Prose from "@components/prose/prose.astro";
4+
import Headline from "@ui/Headline.astro"
55
import { Image } from "astro:assets";
66
import Section from "@ui/Section.astro";
77
@@ -65,9 +65,8 @@ const description = "Our conference speakers organized alphabetically";
6565

6666
<Layout title={title} description={description}>
6767
<Section>
68-
<Prose full>
69-
<h1>Speakers</h1>
70-
</Prose>
68+
69+
<Headline id="speakers" as="h1" title="List of Speakers" />
7170

7271
{
7372
groupKeys.map((key, _index) => (

0 commit comments

Comments
 (0)