Skip to content

Commit 2e4bc9c

Browse files
hyphapre-commit-ci[bot]nikoshell
authored
add anaconda's logo to the open space and sprint page (#1414)
- Added to the open space page - Marcin added the logo to the sprint page --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Niko <[email protected]>
1 parent b4fce4d commit 2e4bc9c

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

src/content/pages/open-spaces.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ title: EuroPython 2025 Open Spaces
33
subtitle: Organise or join an open space at EuroPython 2025!
44
---
55

6+
import { Image } from 'astro:assets';
7+
import anacondaLogo from '../sponsors/anaconda/anaconda.svg';
8+
69
# EuroPython 2025 Open Spaces
710

811
At EuroPython 2025, Open Spaces offer a unique opportunity for attendees to
@@ -78,3 +81,18 @@ Open Space sessions can cover a wide range of topics, such as:
7881

7982
… and anything else you want to explore together — non-coding stuff is very
8083
welcomed too!
84+
85+
<Headline center title="Big Thanks to Our Sponsor" />
86+
87+
<div class="flex justify-center">
88+
<a href="https://www.anaconda.com" target="_blank" rel="noopener noreferrer" class="hover:scale-105 transition-transform external">
89+
<Image
90+
src={anacondaLogo}
91+
alt="Anaconda"
92+
width={200}
93+
height={80}
94+
/>
95+
</a>
96+
</div>
97+
98+
<span class="text-lg text-center block">We're grateful to have <b>Anaconda</b> as our <b>Open Space sponsor</b>!</span>

src/pages/[...slug].astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import { type CollectionEntry, getCollection } from "astro:content";
33
import Layout from "@layouts/MarkdownLayout.astro";
44
5+
import Headline from "@ui/Headline.astro";
56
import Separator from "@ui/Separator.astro";
67
import Map from "@components/Map.astro";
78
import YouTube from "@ui/YouTube.astro";
@@ -56,6 +57,7 @@ const description = post.data.subtitle;
5657
<Content
5758
components={{
5859
Button,
60+
Headline,
5961
Icon,
6062
IconLabel,
6163
Center,

src/pages/sprints.astro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ import { getEntry, render } from 'astro:content';
44
import Layout from '@layouts/MarkdownLayout.astro';
55
import SprintCard from '@components/SprintCard.astro';
66
import Markdown from "@ui/Markdown.astro";
7+
import Headline from "@ui/Headline.astro";
8+
import Prose from "@ui/Prose.astro";
9+
10+
import { Image } from 'astro:assets';
11+
import anacondaLogo from '@src/content/sponsors/anaconda/anaconda.svg';
712
813
const entry = await getEntry('pages', 'sprints_info');
914
@@ -48,6 +53,22 @@ const sprints = await getCollection("sprints", ({ data }) => {
4853
<p class="text-gray-500 text-lg">No sprints are currently available. Check back soon!</p>
4954
</div>
5055
)}
56+
<Prose>
57+
<Headline center title="Big Thanks to Our Sponsor" />
58+
59+
<div class="flex justify-center">
60+
<a href="https://www.anaconda.com" target="_blank" rel="noopener noreferrer" class="hover:scale-105 transition-transform external">
61+
<Image
62+
src={anacondaLogo}
63+
alt="Anaconda"
64+
width={200}
65+
height={80}
66+
/>
67+
</a>
68+
</div>
69+
70+
<span class="text-lg text-center block">We're grateful to have <b>Anaconda</b> as our <b>Sprints sponsor</b>!</span>
71+
</Prose>
5172
</Layout>
5273

5374
<script>

0 commit comments

Comments
 (0)