Skip to content

Commit 98c0c83

Browse files
committed
Add sponsor to sprints
1 parent 18e19c8 commit 98c0c83

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

src/content/pages/open-spaces.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ Open Space sessions can cover a wide range of topics, such as:
8282
… and anything else you want to explore together — non-coding stuff is very
8383
welcomed too!
8484

85-
## Big Thanks to Our Sponsor
85+
<Headline center title="Big Thanks to Our Sponsor" />
8686

8787
<div class="flex justify-center">
88-
<a href="https://www.anaconda.com" target="_blank" rel="noopener noreferrer" class="hover:scale-110">
88+
<a href="https://www.anaconda.com" target="_blank" rel="noopener noreferrer" class="hover:scale-105 transition-transform external">
8989
<Image
9090
src={anacondaLogo}
9191
alt="Anaconda"
@@ -95,4 +95,4 @@ welcomed too!
9595
</a>
9696
</div>
9797

98-
<span class="text-lg text-center block">We're grateful to have **Anaconda** as our **Open Space sponsor**!</span>
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)