Skip to content

Commit

Permalink
Adds the bring your team campaign to the website
Browse files Browse the repository at this point in the history
  • Loading branch information
devjack committed Oct 30, 2024
1 parent bb33afb commit 1f1c570
Show file tree
Hide file tree
Showing 6 changed files with 1,461 additions and 2 deletions.
Binary file added public/files/PyCon AU 2024 - Bring your team.pdf
Binary file not shown.
Binary file added public/media/bring-your-team-campaign.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1,408 changes: 1,407 additions & 1 deletion public/pycon-au-2024/schedule/v/20240903.1/widgets/schedule.json

Large diffs are not rendered by default.

16 changes: 15 additions & 1 deletion src/components/PurchaseButton.astro
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
---
import Button from "./Button.astro"
export type Props = {
cta: string
}
let { cta } = Astro.props
---

<p>
<center id="purchase-button-container">
<Button type="chonk" href="https://pretix.eu/pyconau/2024/">
Get your tickets now!
{ cta ?? 'Get your tickets now!'}
</Button>
</center>
</p>

<style lang="scss">
@import "../vars.scss";
#purchase-button-container + p {
margin-top: 1.25rem;
}
</style>

<script>
// Use a campaign URL if the viewer came from social media.
const referrer = window.localStorage.getItem("referrer")
Expand Down
35 changes: 35 additions & 0 deletions src/content/pages/attend/team.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: Bring your team to PyCon AU
order: 0
---

import PurchaseButton from "../../../components/PurchaseButton.astro"

# Bring your team to PyCon AU

PyCon AU is Australia’s national conference for developers using the Python programming language and is a **must-attend event for your software engineering team**.

## A Professional ticket includes:
* Specialist tracks on Friday 22 November
* Deep-dive learning at PyCon AU workshops on Monday 25 November
* 70+ speakers with 40+ hours of talks
* Learn from and network with 500+ industry peers

## Hands-on workshops including:
* Mastering RAG & unlocking AI potential (presented by MongoDB)
* How to secure, break, and re-secure an encrypted data (presented by CipherStash)

Bring your team of 5 or more and we’ll apply a 10% discount automatically at checkout!

<PurchaseButton cta="Register your team now!"/>

Don't Delay! Register your team today!


## Convince your boss

Need a hand convincing your boss to let you attend PyCon AU? We've got you covered!

[![Bring your team to PyCon AU](/media/bring-your-team-campaign.png)](/files/PyCon%20AU%202024%20-%20Bring%20your%20team.pdf)

Grab our **[Bring your team](/files/PyCon%20AU%202024%20-%20Bring%20your%20team.pdf)** PDF and get the conversation started.
4 changes: 4 additions & 0 deletions src/layouts/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ main {
background-color: rgba(255, 239, 97, 0.4);
padding: -3px 3px;
}

#purchase-button-container + p {
margin-top: 1.25rem;
}
}

$logo-w-ratio: 3.577;
Expand Down

0 comments on commit 1f1c570

Please sign in to comment.