From 0a42e80797e46eebd0bd7aff0de2586ea41b443e Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 09:22:58 +0200 Subject: [PATCH 01/15] Cleanup: Hero and finaid. --- public/{img/accents => }/finaid-round1.svg | 0 public/{img/accents => }/finaid-round2.svg | 0 public/icons/calendar.svg | 4 - public/icons/pin.svg | 4 - .../images}/conference_photo.jpg | Bin src/components/hero2/hero.astro | 6 +- src/components/hero2/hero.svg | 1988 ----------------- src/components/hero2/icon-label.astro | 8 +- src/content/pages/finaid.mdx | 84 +- src/styles/global.css | 3 + 10 files changed, 22 insertions(+), 2075 deletions(-) rename public/{img/accents => }/finaid-round1.svg (100%) rename public/{img/accents => }/finaid-round2.svg (100%) delete mode 100644 public/icons/calendar.svg delete mode 100644 public/icons/pin.svg rename {src/components/hero2 => public/images}/conference_photo.jpg (100%) delete mode 100644 src/components/hero2/hero.svg diff --git a/public/img/accents/finaid-round1.svg b/public/finaid-round1.svg similarity index 100% rename from public/img/accents/finaid-round1.svg rename to public/finaid-round1.svg diff --git a/public/img/accents/finaid-round2.svg b/public/finaid-round2.svg similarity index 100% rename from public/img/accents/finaid-round2.svg rename to public/finaid-round2.svg diff --git a/public/icons/calendar.svg b/public/icons/calendar.svg deleted file mode 100644 index 717d78d7e..000000000 --- a/public/icons/calendar.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/public/icons/pin.svg b/public/icons/pin.svg deleted file mode 100644 index 3216d47ea..000000000 --- a/public/icons/pin.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/components/hero2/conference_photo.jpg b/public/images/conference_photo.jpg similarity index 100% rename from src/components/hero2/conference_photo.jpg rename to public/images/conference_photo.jpg diff --git a/src/components/hero2/hero.astro b/src/components/hero2/hero.astro index 2c4e5c76b..76f556a49 100644 --- a/src/components/hero2/hero.astro +++ b/src/components/hero2/hero.astro @@ -1,6 +1,6 @@ --- import { Image } from "astro:assets"; -import heroImage from "./conference_photo.jpg"; +import heroImage from "/public/images/conference_photo.jpg"; import IconWithLabel from "./icon-label.astro"; import Button from "@ui/Button.astro"; @@ -98,10 +98,10 @@ const action2 = "/sponsorship/sponsor/";
- +
- +
diff --git a/src/components/hero2/hero.svg b/src/components/hero2/hero.svg deleted file mode 100644 index 3cae48cfe..000000000 --- a/src/components/hero2/hero.svg +++ /dev/null @@ -1,1988 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/components/hero2/icon-label.astro b/src/components/hero2/icon-label.astro index c432cd87d..f25dab193 100644 --- a/src/components/hero2/icon-label.astro +++ b/src/components/hero2/icon-label.astro @@ -1,7 +1,7 @@ --- const { icon, label } = Astro.props; -const iconPath = `/icons/${icon}.svg`; +import Icon from "@ui/Icon.astro"; --- @@ -9,10 +9,14 @@ const iconPath = `/icons/${icon}.svg`;
- {label} +
+<<<<<<< Updated upstream {label} +======= + {label} +>>>>>>> Stashed changes - - \ No newline at end of file diff --git a/src/components/benefits-list/benefit-item.astro b/src/components/benefits-list/benefit-item.astro index 44991920e..ca7c11bff 100644 --- a/src/components/benefits-list/benefit-item.astro +++ b/src/components/benefits-list/benefit-item.astro @@ -1,31 +1,18 @@ --- +import Icon from "@ui/Icon.astro"; + export interface Props { title: string; - icon: "award" | "headhunt" | "network" | "rocket" | "target" | "transfer"; + icon: string; } -import Award from "../icons/award.astro"; -import Headhunt from "../icons/headhunt.astro"; -import Network from "../icons/network.astro"; -import Rocket from "../icons/rocket.astro"; -import Target from "../icons/target.astro"; -import Transfer from "../icons/transfer.astro"; - const { icon, title } = Astro.props; -const Icon = { - award: Award, - headhunt: Headhunt, - network: Network, - rocket: Rocket, - target: Target, - transfer: Transfer, -}[icon]; ---
- +
{title}
diff --git a/src/components/button-link/button-link.astro b/src/components/button-link/button-link.astro deleted file mode 100644 index 94891a4ca..000000000 --- a/src/components/button-link/button-link.astro +++ /dev/null @@ -1,30 +0,0 @@ ---- -import type React from "react"; - -export interface Props { - url?: string; - children: React.ReactNode; - disabled?: boolean; - className?: string; - secondary?: boolean; - isExternal?: boolean; -} - -const { - url, - className = "", - secondary = false, - disabled = false, -} = Astro.props; ---- - - - - diff --git a/src/components/hero-section/title-with-cta.astro b/src/components/hero-section/title-with-cta.astro index d2aff0b82..491bb87fc 100644 --- a/src/components/hero-section/title-with-cta.astro +++ b/src/components/hero-section/title-with-cta.astro @@ -1,5 +1,5 @@ --- -import ButtonLink from "../button-link/button-link.astro"; +import Button from "@ui/Button.astro"; import { Title } from "../typography/title"; interface Props { @@ -19,7 +19,7 @@ const { title, subtitle, buttonText, buttonUrl } = Astro.props; { buttonText && buttonUrl && (
- {buttonText} +
) } diff --git a/src/components/hero2/icon-label.astro b/src/components/hero2/icon-label.astro index f25dab193..6b4f8dbed 100644 --- a/src/components/hero2/icon-label.astro +++ b/src/components/hero2/icon-label.astro @@ -4,23 +4,15 @@ const { icon, label } = Astro.props; import Icon from "@ui/Icon.astro"; --- -
-<<<<<<< Updated upstream - - {label} -======= {label} ->>>>>>> Stashed changes
- diff --git a/src/components/markdown/Center.astro b/src/components/markdown/Center.astro new file mode 100644 index 000000000..fad103aa1 --- /dev/null +++ b/src/components/markdown/Center.astro @@ -0,0 +1 @@ +
diff --git a/src/components/markdown/EPSLogo.astro b/src/components/markdown/EPSLogo.astro new file mode 100644 index 000000000..f1fef4b5d --- /dev/null +++ b/src/components/markdown/EPSLogo.astro @@ -0,0 +1,5 @@ + diff --git a/src/components/markdown/IconLabel.astro b/src/components/markdown/IconLabel.astro new file mode 100644 index 000000000..c7595e4f3 --- /dev/null +++ b/src/components/markdown/IconLabel.astro @@ -0,0 +1,16 @@ +--- +import Icon from "@ui/Icon.astro"; + +export interface Props { + title: string; + icon: string; +} + +const { icon, title:label } = Astro.props; + +--- + +
+ + {label} +
diff --git a/src/components/sponsor-tiers/sponsor-tiers.astro b/src/components/sponsor-tiers/sponsor-tiers.astro index aa4045258..f78f2b3b4 100644 --- a/src/components/sponsor-tiers/sponsor-tiers.astro +++ b/src/components/sponsor-tiers/sponsor-tiers.astro @@ -1,7 +1,7 @@ --- import { Title } from "../typography/title"; import Ribbon from "./ribbon.astro"; -import ButtonLink from "../button-link/button-link.astro"; +import Button from "@ui/Button.astro"; interface Props { signupLink: string; @@ -233,7 +233,7 @@ const formatPrice = (price: number | string) => { ))}
- Sign Up Now! +
)) @@ -291,7 +291,7 @@ const formatPrice = (price: number | string) => { ))}
- Sign Up Now! +
)) @@ -347,7 +347,7 @@ const formatPrice = (price: number | string) => { ))}
- Sign Up Now! +
)) diff --git a/src/content/pages/beginners-day.mdx b/src/content/pages/beginners-day.mdx index d1560277a..678ca757a 100644 --- a/src/content/pages/beginners-day.mdx +++ b/src/content/pages/beginners-day.mdx @@ -19,13 +19,10 @@ The number of places available for each track is as follows: * **Django Girls**: 40 places * **Humble Data**: 18 places -

-
-Apply for Beginners' Day! -
+ ## Beginners' Day Unconference @@ -46,11 +43,7 @@ No prior knowledge is required: just bring your curiosity and a laptop, and by t We are also looking for **mentors** for Django Girls. Applications for mentors close on May 18th, and successful mentors will be informed by May 25th. -
- -Become a Django Girls Mentor! - -
+ ## Humble Data @@ -60,8 +53,4 @@ No prior programming or data science experience is necessary: just bring your la We are also looking for **mentors** for Humble Data. Applications for mentors close on May 18th, and successful mentors will be informed by May 25th. -
- -Become a Humble Data Mentor! - -
+ diff --git a/src/content/pages/finaid.mdx b/src/content/pages/finaid.mdx index 3cfa188d1..40e57a720 100644 --- a/src/content/pages/finaid.mdx +++ b/src/content/pages/finaid.mdx @@ -18,12 +18,7 @@ You’ll find all the information you need to apply for such a grant below. ## Financial Aid Sponsors -
- - Logo of the EuroPython Society - -
- + The EuroPython Society is sponsoring the Financial Aid Programme again this year. If you want to support EuroPython and its efforts to make EuroPython accessible @@ -64,9 +59,7 @@ for a grant: You can apply for Financial Aid by filling out the form. -
- Apply Now if You Need the Support -
+ The data we collect on this form will exclusively be used by our Financial Aid team for the selection of grant recipients and the processing of financial diff --git a/src/content/pages/programme/cfp.mdx b/src/content/pages/programme/cfp.mdx index 4e972d6a3..187797234 100644 --- a/src/content/pages/programme/cfp.mdx +++ b/src/content/pages/programme/cfp.mdx @@ -11,9 +11,9 @@ The Call for Proposals ran from the 10th of January to the 3rd of February 2025, **Community Voting & Call for Reviewers are also closed.** -
+
**Thank you for your support!** -
+ ----- EuroPython reflects the colourful and diverse backgrounds, cultures and interests of our community, so you (yes, you!) should go for it: propose something and represent! diff --git a/src/content/pages/programme/mentorship.mdx b/src/content/pages/programme/mentorship.mdx index 26afef496..e41e79bcd 100644 --- a/src/content/pages/programme/mentorship.mdx +++ b/src/content/pages/programme/mentorship.mdx @@ -26,9 +26,7 @@ mentee what their contribution should be (that's for the mentee to decide). ## Mentors -
- Signup closed -
+ We expect mentors to have past speaking experience at conferences similar to EuroPython. @@ -47,9 +45,7 @@ You will also be invited to join the panel of the Webinar Workshops. ## Mentee -
- Signup closed -
+ If you require help contributing to EuroPython, especially if you are from an underrepresented or a marginalised group in the tech industry, you are welcome @@ -64,9 +60,7 @@ After the CfP, we will host an online panel session with 2–3 experienced commu **Time**: 6 PM CEST (60-90 mins, depending on the amount of questions) -
- Sign Up Now -
+ You can watch the recording of the previous year's workshop here: diff --git a/src/content/pages/programme/voting.mdx b/src/content/pages/programme/voting.mdx index b1e505099..2eddad182 100644 --- a/src/content/pages/programme/voting.mdx +++ b/src/content/pages/programme/voting.mdx @@ -15,16 +15,15 @@ educational and entertaining programme. Your feedback is an important ingredient in this refinement and curation process. -
- +
Community Voting is Closed. It was open from Wednesday, 5 February 23:00:00 UTC until Monday, 17 February 23:59:59 UTC +
-Thank you for casting your votes! -
+ --- @@ -89,12 +88,9 @@ programme team who curate and are responsible for the final programme, but one of the major factors upon which they rely, will be the preferences of the community through this voting process. - - Go to the community voting - +>Go to the community voting **[Subscribe to our newsletter](https://blog.europython.eu/#/portal/signup)** diff --git a/src/content/pages/sponsorship/sponsor.mdx b/src/content/pages/sponsorship/sponsor.mdx index d4f37d20a..5d7bc2043 100644 --- a/src/content/pages/sponsorship/sponsor.mdx +++ b/src/content/pages/sponsorship/sponsor.mdx @@ -24,21 +24,17 @@ Join **EuroPython 2025 from 14 – 20 July** at the Prague Congress Centre (PCC)
Hear from our sponsors at EuroPython 2023
Explore the benefits of sponsoring EuroPython: - -Boost your brand and connect with **1,500 Pythonistas** at this leading Python event. -Showcase your product to an engaged audience and **turn visibility into high-quality leads**. -Build **positive brand association** and gain community respect & appreciation. -Tap into the expertise of the Python community to **upskill your team**. -Access **a pool of talented Python developers** looking for their next opportunity. - Discover new avenues and opportunities to **expand and grow your business**. - -#### Ready to Become a EuroPython 2025 Sponsor? -
+| | | | +|--------------------------------------------------------------------------------------- |----------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------- | +| Boost your brand and connect with **1,500 Pythonistas** at this leading Python event. | Showcase your product to an engaged audience and **turn visibility into high-quality leads**. | Build **positive brand association** and gain community respect & appreciation. | -Sign Up Now to Secure Your Spot! +| | | | +|--------------------------------------------------------------------------------------- |----------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------- | +| Tap into the expertise of the Python community to **upskill your team**. | Access **a pool of talented Python developers** looking for their next opportunity. | Discover new avenues and opportunities to **expand and grow your business**. | -
+#### Ready to Become a EuroPython 2025 Sponsor? + --- @@ -47,10 +43,8 @@ Explore the benefits of sponsoring EuroPython: At EuroPython 2025, we offer **seven main packages** to ensure supporting the Python community is accessible for organisations of all sizes. -
-Full Sponsorship Opportunities (PDF) -Sign up now! -
+ + @@ -84,9 +78,7 @@ We also offer opportunities for ➡️ **Availability is limited**, and some add-ons are exclusive to certain sponsorship levels. See the full list in the [PDF](https://drive.google.com/file/d/1AGvH0w3fMLRvaNDa5VPCs78rtc4MnL6h/view?usp=sharing) for complete details and eligibility. -
-Secure Your Sponsorship Now! -
+ ## Discounts @@ -124,9 +116,7 @@ book a free table! Please note that places are limited, so get in touch soon! --- ### Support the European Python Community - - Logo of the EuroPython Society - + By sponsoring the EuroPython Conference Series, **you're supporting the non-profit [EuroPython Society (EPS)](https://www.europython-society.org/)**, the volunteer-led organisation behind EuroPython. Our proceeds from the conference go towards the **[EPS Grants Programme](https://www.europython-society.org/grants/)**, which funds community-driven Python events and initiatives across Europe. **Your contribution helps make Python more accessible and inclusive across Europe**. diff --git a/src/content/pages/test.mdx b/src/content/pages/test.mdx index 2bad982f3..90bc1f5f8 100644 --- a/src/content/pages/test.mdx +++ b/src/content/pages/test.mdx @@ -236,10 +236,7 @@ Barking up the right tree ## Images - - This image is public, stored in /public, so no import is needed - Logo of the EuroPython Society - + This image is internal, in /src, so import is needed @@ -256,17 +253,12 @@ Barking up the right tree />
Hear from our CHO at EuroPython 2023
-## ButtonLinks -
- JOIN THE REVIEWER TEAM! -
+## Button Links + -
+ - Signup closed, no URL present -
- -Go to the community voting + ## YouTube diff --git a/src/content/pages/tickets.mdx b/src/content/pages/tickets.mdx index 5a88936b5..c0d32948f 100644 --- a/src/content/pages/tickets.mdx +++ b/src/content/pages/tickets.mdx @@ -12,9 +12,7 @@ import TicketTiers from "../../components/ticket-tiers/ticket-tiers.astro"; Discover the latest Python trends, learn from 180+ expert speakers, network with fellow developers, enjoy social events, and explore open spaces to spark new ideas! Organized by the community for the community. -
-Beam me up to the ticket shop! -
+ ## Where and When? @@ -42,17 +40,10 @@ Each ticket type is available in three pricing tiers. We trust you to choose the As a non-profit, every ticket you buy goes back into the Python community. Whether by our
financial aid programme, helping those in need of support, like students, attend the conference, or supporting Python communities across Europe through our EPS Grants programme. - - - If your company is covering your ticket or you use Python professionally, this is the right tier for you. By choosing this option, you help us keep the conference accessible. Thank you! - - - Are you a Python enthusiast, hobbyist, or freelancer? This ticket is for you! It's priced for individuals paying their own way, so you can enjoy the conference at a fair and affordable rate. - - - If you're a student or an educator working in schools or universities, this ticket is for you. We offer subsidized pricing so students and educators can join in and be part of the conference! - - +| | | | +|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| If your company is covering your ticket or you use Python professionally, this is the right tier for you. By choosing this option, you help us keep the conference accessible. Thank you! | Are you a Python enthusiast, hobbyist, or freelancer? This ticket is for you! It's priced for individuals paying their own way, so you can enjoy the conference at a fair and affordable rate. | If you're a student or an educator working in schools or universities, this ticket is for you. We offer subsidized pricing so students and educators can join in and be part of the conference! | + If you need a VAT invoice with your company's name, please purchase a Business Ticket. Personal Tickets do not include a company name. To assist the registration staff, your conference badge will display the ticket tier and type. @@ -88,9 +79,7 @@ Is your company attending the conference as a team? We offer the following volum #### Sponsorship If you're purchasing multiple tickets, please consider sponsoring the event! -
- Learn About Sponsorship -
+ ### Additional Information @@ -140,6 +129,4 @@ If you're purchasing multiple tickets, please consider sponsoring the event! If you have any questions, check our FAQ first. Still need help? Our wonderful volunteer team at the EuroPython Helpdesk is happy to assist—don't hesitate to reach out! -
-Beam me up to the ticket shop! -
+ diff --git a/src/content/pages/visa.mdx b/src/content/pages/visa.mdx index 75d8aefe8..30e6ddb25 100644 --- a/src/content/pages/visa.mdx +++ b/src/content/pages/visa.mdx @@ -25,9 +25,7 @@ Every registered attendee is welcome to request a visa support letter issued by Simply fill in the form **1 week before your planned visa application**: -
- Visa Support Letter Request Form -
+ We will send you the completed letter via email. diff --git a/src/layouts/MarkdownLayout.astro b/src/layouts/MarkdownLayout.astro index 2ec404fdd..0fa455a58 100644 --- a/src/layouts/MarkdownLayout.astro +++ b/src/layouts/MarkdownLayout.astro @@ -1,7 +1,6 @@ --- import Layout from "@layouts/Layout.astro"; import Section from "@ui/Section.astro"; -import Prose from "@components/prose/prose.astro"; import TwoCols from "@components/TwoCols.astro"; import "../styles/markdown.css"; diff --git a/src/pages/[...slug].astro b/src/pages/[...slug].astro index 8c67d1155..f8199db2d 100644 --- a/src/pages/[...slug].astro +++ b/src/pages/[...slug].astro @@ -2,18 +2,20 @@ import { type CollectionEntry, getCollection } from "astro:content"; import Layout from "@layouts/MarkdownLayout.astro"; -import ButtonLink from "../components/button-link/button-link.astro"; -import { Separator } from "../components/separator/separator"; -import { Map } from "../components/map"; -import { MapSprints } from "../components//map-for-sprints"; +import { Separator } from "@components/separator/separator"; +import { Map } from "@components/map"; +import { MapSprints } from "@components//map-for-sprints"; import YouTube from "@ui/YouTube.astro"; -import BenefitsList from "../components/benefits-list/benefits-list.astro"; -import BenefitItem from "../components/benefits-list/benefit-item.astro"; -import HighlightCard from "../components/highlight-list/highlight-card.astro"; -import HighlightItem from "../components/highlight-list/highlight-item.astro"; -import { Note } from "../components/note"; -import SponsorTiers from "../components/sponsor-tiers/sponsor-tiers.astro"; -import Accordion from "../components/accordion/accordion.astro"; +import HighlightCard from "@components/highlight-list/highlight-card.astro"; +import HighlightItem from "@components/highlight-list/highlight-item.astro"; +import { Note } from "@components/note"; +import SponsorTiers from "@components/sponsor-tiers/sponsor-tiers.astro"; +import Accordion from "@components/accordion/accordion.astro"; +import Button from "@ui/Button.astro"; +import Icon from "@ui/Icon.astro"; +import IconLabel from "@components/markdown/IconLabel.astro"; +import Center from "@components/markdown/Center.astro"; +import EPSLogo from "@components/markdown/EPSLogo.astro"; import Prose from "@components/prose/prose.astro"; @@ -52,12 +54,14 @@ const description = post.data.subtitle; Date: Thu, 15 May 2025 12:16:47 +0200 Subject: [PATCH 03/15] Clean up icons. --- .../benefits-list/benefit-item.astro | 21 ----------- .../benefits-list/benefits-list.astro | 1 - src/components/icons/award.astro | 36 ------------------ src/components/icons/headhunt.astro | 36 ------------------ src/components/icons/network.astro | 34 ----------------- src/components/icons/rocket.astro | 36 ------------------ src/components/icons/target.astro | 35 ------------------ src/components/icons/transfer.astro | 37 ------------------- 8 files changed, 236 deletions(-) delete mode 100644 src/components/benefits-list/benefit-item.astro delete mode 100644 src/components/benefits-list/benefits-list.astro delete mode 100644 src/components/icons/award.astro delete mode 100644 src/components/icons/headhunt.astro delete mode 100644 src/components/icons/network.astro delete mode 100644 src/components/icons/rocket.astro delete mode 100644 src/components/icons/target.astro delete mode 100644 src/components/icons/transfer.astro diff --git a/src/components/benefits-list/benefit-item.astro b/src/components/benefits-list/benefit-item.astro deleted file mode 100644 index ca7c11bff..000000000 --- a/src/components/benefits-list/benefit-item.astro +++ /dev/null @@ -1,21 +0,0 @@ ---- -import Icon from "@ui/Icon.astro"; - -export interface Props { - title: string; - icon: string; -} - -const { icon, title } = Astro.props; - ---- - -
-
- -
{title}
-
-
- -
-
diff --git a/src/components/benefits-list/benefits-list.astro b/src/components/benefits-list/benefits-list.astro deleted file mode 100644 index b312fe0a7..000000000 --- a/src/components/benefits-list/benefits-list.astro +++ /dev/null @@ -1 +0,0 @@ -
diff --git a/src/components/icons/award.astro b/src/components/icons/award.astro deleted file mode 100644 index 03c0196ef..000000000 --- a/src/components/icons/award.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -interface Props { - class?: string; -} - -const { class: className } = Astro.props; ---- - - - - - - - - - - - - - - diff --git a/src/components/icons/headhunt.astro b/src/components/icons/headhunt.astro deleted file mode 100644 index 3c8f857fb..000000000 --- a/src/components/icons/headhunt.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -interface Props { - class?: string; -} - -const { class: className } = Astro.props; ---- - - - - - - - - - - - - - - diff --git a/src/components/icons/network.astro b/src/components/icons/network.astro deleted file mode 100644 index adc6fb932..000000000 --- a/src/components/icons/network.astro +++ /dev/null @@ -1,34 +0,0 @@ ---- -interface Props { - class?: string; -} - -const { class: className } = Astro.props; ---- - - - - - - - - - - - - diff --git a/src/components/icons/rocket.astro b/src/components/icons/rocket.astro deleted file mode 100644 index d36748b9c..000000000 --- a/src/components/icons/rocket.astro +++ /dev/null @@ -1,36 +0,0 @@ ---- -interface Props { - class?: string; -} - -const { class: className } = Astro.props; ---- - - - - - - - - - - - - - - diff --git a/src/components/icons/target.astro b/src/components/icons/target.astro deleted file mode 100644 index 02779f305..000000000 --- a/src/components/icons/target.astro +++ /dev/null @@ -1,35 +0,0 @@ ---- -interface Props { - class?: string; -} - -const { class: className } = Astro.props; ---- - - - - - - - - - - - - - - diff --git a/src/components/icons/transfer.astro b/src/components/icons/transfer.astro deleted file mode 100644 index 407b1c02b..000000000 --- a/src/components/icons/transfer.astro +++ /dev/null @@ -1,37 +0,0 @@ ---- -interface Props { - class?: string; -} - -const { class: className } = Astro.props; ---- - - - icon-transfer - - - - - - - - - - - - From c040d6e92e46ed891e11adc14a89f32f5c926c5e Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:19:41 +0200 Subject: [PATCH 04/15] Clean up: move hero to sections. --- src/components/{hero2 => sections/hero}/hero.astro | 0 src/components/{hero2 => sections/hero}/icon-label.astro | 0 src/pages/index.astro | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename src/components/{hero2 => sections/hero}/hero.astro (100%) rename src/components/{hero2 => sections/hero}/icon-label.astro (100%) diff --git a/src/components/hero2/hero.astro b/src/components/sections/hero/hero.astro similarity index 100% rename from src/components/hero2/hero.astro rename to src/components/sections/hero/hero.astro diff --git a/src/components/hero2/icon-label.astro b/src/components/sections/hero/icon-label.astro similarity index 100% rename from src/components/hero2/icon-label.astro rename to src/components/sections/hero/icon-label.astro diff --git a/src/pages/index.astro b/src/pages/index.astro index 8b8bd5927..94ff32dd4 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,6 +1,6 @@ --- import Layout from "@layouts/Layout.astro"; -import Hero from "@components/hero2/hero.astro"; +import Hero from "@sections/hero/hero.astro"; import Updates from "@sections/updates.astro"; import Keynoters from "@components/keynoters/keynoters.astro"; import Speakers from "@sections/speakers.astro"; From 7848ad7578bf65601ece6e971fbd0b66783b59eb Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:20:47 +0200 Subject: [PATCH 05/15] Clean up: remove nav-items. --- src/components/nav-items/index.tsx | 1 - src/components/nav-items/nav-items.tsx | 85 -------------------------- 2 files changed, 86 deletions(-) delete mode 100644 src/components/nav-items/index.tsx delete mode 100644 src/components/nav-items/nav-items.tsx diff --git a/src/components/nav-items/index.tsx b/src/components/nav-items/index.tsx deleted file mode 100644 index 92bc37423..000000000 --- a/src/components/nav-items/index.tsx +++ /dev/null @@ -1 +0,0 @@ -export { NavItems } from "./nav-items"; diff --git a/src/components/nav-items/nav-items.tsx b/src/components/nav-items/nav-items.tsx deleted file mode 100644 index 3a8078f17..000000000 --- a/src/components/nav-items/nav-items.tsx +++ /dev/null @@ -1,85 +0,0 @@ -import clsx from "clsx"; - -type Item = { - name: string; - path?: string; - items?: Item[]; -}; - -type Props = { - items: Item[]; - inverted?: boolean; -}; - -export const NavItems = ({ items, inverted = false }: Props) => { - return ( - - ); -}; From d42de3b69c68887fd9c23a1ab97f7eb7e769585b Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:28:40 +0200 Subject: [PATCH 06/15] Clean up: separator. --- src/components/sponsors/sponsors.astro | 2 +- src/components/ui/Separator.astro | 2 ++ src/pages/[...slug].astro | 2 +- src/pages/session/[slug].astro | 6 +++--- 4 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 src/components/ui/Separator.astro diff --git a/src/components/sponsors/sponsors.astro b/src/components/sponsors/sponsors.astro index 10a72b0d1..2a51352c9 100644 --- a/src/components/sponsors/sponsors.astro +++ b/src/components/sponsors/sponsors.astro @@ -1,6 +1,6 @@ --- import { getCollection } from "astro:content"; -import { Separator } from "../separator/separator"; +import Separator from "@ui/Separator.astro"; import { Fragment } from "react"; import Headline from "@ui/Headline.astro" import Section from "@ui/Section.astro" diff --git a/src/components/ui/Separator.astro b/src/components/ui/Separator.astro new file mode 100644 index 000000000..77445e8bb --- /dev/null +++ b/src/components/ui/Separator.astro @@ -0,0 +1,2 @@ + +
diff --git a/src/pages/[...slug].astro b/src/pages/[...slug].astro index f8199db2d..2e13769c7 100644 --- a/src/pages/[...slug].astro +++ b/src/pages/[...slug].astro @@ -2,7 +2,7 @@ import { type CollectionEntry, getCollection } from "astro:content"; import Layout from "@layouts/MarkdownLayout.astro"; -import { Separator } from "@components/separator/separator"; +import Separator from "@ui/Separator.astro"; import { Map } from "@components/map"; import { MapSprints } from "@components//map-for-sprints"; import YouTube from "@ui/YouTube.astro"; diff --git a/src/pages/session/[slug].astro b/src/pages/session/[slug].astro index 7ce0f08d1..733a8cb3f 100644 --- a/src/pages/session/[slug].astro +++ b/src/pages/session/[slug].astro @@ -1,8 +1,8 @@ --- import { getCollection, getEntries } from "astro:content"; -import Layout from "../../layouts/Layout.astro"; -import Prose from "../../components/prose/prose.astro"; -import { Separator } from "../../components/separator/separator"; +import Layout from "@layouts/Layout.astro"; +import Prose from "@components/prose/prose.astro"; +import Separator from "@ui/Separator.astro"; import { formatInTimeZone } from "date-fns-tz"; import { YouTube } from "@astro-community/astro-embed-youtube"; import { Picture } from "astro:assets"; From 6cbcaecbb4d1a34165054e3ed9e074d2af7c0cc9 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:29:04 +0200 Subject: [PATCH 07/15] Clean up: remove old separator. --- src/components/separator/separator.tsx | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/components/separator/separator.tsx diff --git a/src/components/separator/separator.tsx b/src/components/separator/separator.tsx deleted file mode 100644 index 449e452dd..000000000 --- a/src/components/separator/separator.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import clsx from "clsx"; - -export const Separator = ({ light = false }: any) => ( -
-); From ca3e2d68769f992f24080cc1aef9d65c2e8488e1 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:32:59 +0200 Subject: [PATCH 08/15] Clean up: 404 and fullbleed. --- src/components/layout/fullbleed.tsx | 11 ----------- src/pages/404.astro | 5 +---- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 src/components/layout/fullbleed.tsx diff --git a/src/components/layout/fullbleed.tsx b/src/components/layout/fullbleed.tsx deleted file mode 100644 index 70ca89954..000000000 --- a/src/components/layout/fullbleed.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import clsx from "clsx"; - -export const Fullbleed = ({ - children, - className, -}: { - children: any; - className?: string; -}) => { - return
{children}
; -}; diff --git a/src/pages/404.astro b/src/pages/404.astro index a0277747f..45c9f04ed 100644 --- a/src/pages/404.astro +++ b/src/pages/404.astro @@ -1,13 +1,11 @@ --- -import Layout from "../layouts/Layout.astro"; -import { Fullbleed } from "../components/layout/fullbleed"; +import Layout from "@layouts/Layout.astro"; --- -
-
diff --git a/src/components/sections/prague.astro b/src/components/sections/prague.astro index e58f1f5c7..295d09c67 100644 --- a/src/components/sections/prague.astro +++ b/src/components/sections/prague.astro @@ -37,7 +37,7 @@ import Section from "@ui/Section.astro" -
+
@@ -51,7 +51,8 @@ import Section from "@ui/Section.astro" .city { position: relative; top: 0; - width: 100vw; + width: 100%; + grid-column: 1 / 4; } .city svg { width: 100vw; @@ -59,4 +60,5 @@ import Section from "@ui/Section.astro" bottom: -4px; z-index: 1; } + diff --git a/src/styles/global.css b/src/styles/global.css index 31368de14..4d3806342 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -45,11 +45,6 @@ body { grid-column: 2; } -.full-bleed { - width: 100%; - grid-column: 1 / 4; -} - .prose :is(h1, h2, h3, h4, h5, h6) a { text-decoration: none !important; } From d66423f8969eda3000eb76985d9690bc34b8ae9d Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:40:45 +0200 Subject: [PATCH 10/15] Clean up: assets. --- public/placeholder.png | Bin 5474 -> 0 bytes {src/assets => public}/prague.svg | 0 {src/assets => public}/prague2.jpg | Bin src/assets/placeholder.png | Bin 5474 -> 0 bytes src/assets/placeholder.svg | 1 - src/components/sections/prague.astro | 4 ++-- 6 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 public/placeholder.png rename {src/assets => public}/prague.svg (100%) rename {src/assets => public}/prague2.jpg (100%) delete mode 100644 src/assets/placeholder.png delete mode 100644 src/assets/placeholder.svg diff --git a/public/placeholder.png b/public/placeholder.png deleted file mode 100644 index 25d8b896440e179fb8bc5a9ac14e985748df2153..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5474 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 \ No newline at end of file diff --git a/src/components/sections/prague.astro b/src/components/sections/prague.astro index 295d09c67..9ef47db9a 100644 --- a/src/components/sections/prague.astro +++ b/src/components/sections/prague.astro @@ -1,8 +1,8 @@ --- import Button from "@ui/Button.astro"; import { Image } from "astro:assets"; -import pragueImage from "@assets/prague2.jpg"; -import Logo from "@assets/prague.svg"; +import pragueImage from "/public/prague2.jpg"; +import Logo from "/public/prague.svg"; import Headline from "@ui/Headline.astro"; import Section from "@ui/Section.astro" --- From 97cf58d03315c5b130987f219ab864a7ec278265 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:42:56 +0200 Subject: [PATCH 11/15] Clean up: Unused components. --- src/components/map-for-sprints/index.tsx | 1 - src/components/map-for-sprints/map-for-sprints.tsx | 10 ---------- src/pages/[...slug].astro | 2 -- 3 files changed, 13 deletions(-) delete mode 100644 src/components/map-for-sprints/index.tsx delete mode 100644 src/components/map-for-sprints/map-for-sprints.tsx diff --git a/src/components/map-for-sprints/index.tsx b/src/components/map-for-sprints/index.tsx deleted file mode 100644 index cab98e40e..000000000 --- a/src/components/map-for-sprints/index.tsx +++ /dev/null @@ -1 +0,0 @@ -export { MapSprints } from "./map-for-sprints"; diff --git a/src/components/map-for-sprints/map-for-sprints.tsx b/src/components/map-for-sprints/map-for-sprints.tsx deleted file mode 100644 index 3b1026e3a..000000000 --- a/src/components/map-for-sprints/map-for-sprints.tsx +++ /dev/null @@ -1,10 +0,0 @@ -export const MapSprints = () => ( - -); diff --git a/src/pages/[...slug].astro b/src/pages/[...slug].astro index 2e13769c7..54c62c626 100644 --- a/src/pages/[...slug].astro +++ b/src/pages/[...slug].astro @@ -4,7 +4,6 @@ import Layout from "@layouts/MarkdownLayout.astro"; import Separator from "@ui/Separator.astro"; import { Map } from "@components/map"; -import { MapSprints } from "@components//map-for-sprints"; import YouTube from "@ui/YouTube.astro"; import HighlightCard from "@components/highlight-list/highlight-card.astro"; import HighlightItem from "@components/highlight-list/highlight-item.astro"; @@ -60,7 +59,6 @@ const description = post.data.subtitle; Center, EPSLogo, Map, - MapSprints, YouTube, HighlightCard, HighlightItem, From f3719fdf9dade65001832282091db742c44be0d3 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 12:45:51 +0200 Subject: [PATCH 12/15] Clean up: Cards. --- src/components/card/card-container.tsx | 5 ----- src/components/sections/updates.astro | 24 ++++++++---------------- 2 files changed, 8 insertions(+), 21 deletions(-) delete mode 100644 src/components/card/card-container.tsx diff --git a/src/components/card/card-container.tsx b/src/components/card/card-container.tsx deleted file mode 100644 index 7ee4f841e..000000000 --- a/src/components/card/card-container.tsx +++ /dev/null @@ -1,5 +0,0 @@ -export const CardContainer = ({ children }: { children: React.ReactNode }) => ( -
- {children} -
-); diff --git a/src/components/sections/updates.astro b/src/components/sections/updates.astro index 8af09e3dc..123abb9e9 100644 --- a/src/components/sections/updates.astro +++ b/src/components/sections/updates.astro @@ -1,27 +1,19 @@ --- - -import { CardContainer } from "@components/card/card-container"; import DeadlineCard from "@components/deadline-card.astro"; -import Headline from "@ui/Headline.astro" +import Headline from "@ui/Headline.astro"; import { getCollection } from "astro:content"; -import Section from "@ui/Section.astro" +import Section from "@ui/Section.astro"; let deadlines = await getCollection("deadlines"); deadlines = deadlines .sort((a, b) => a.slug.localeCompare(b.slug)) .reverse() .slice(0, 6); - --- -
- - - {deadlines.map((deadline) => )} - -
- +
+ +
+ {deadlines.map((deadline) => )} +
+
From 2be786f5bbb9eb033b342ac34501f6323a7b69ef Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 14:28:54 +0200 Subject: [PATCH 13/15] Clean up: Hero icons. --- src/components/sections/hero/hero.astro | 332 ++++++++---------- src/components/sections/hero/icon-label.astro | 4 - 2 files changed, 154 insertions(+), 182 deletions(-) diff --git a/src/components/sections/hero/hero.astro b/src/components/sections/hero/hero.astro index c04021d5b..3bc454ee0 100644 --- a/src/components/sections/hero/hero.astro +++ b/src/components/sections/hero/hero.astro @@ -3,6 +3,7 @@ import { Image } from "astro:assets"; import heroImage from "/public/images/conference_photo.jpg"; import IconWithLabel from "./icon-label.astro"; +import Icon from "@ui/Icon.astro"; import Button from "@ui/Button.astro"; const action1 = "/tickets"; @@ -10,200 +11,176 @@ const action2 = "/sponsorship/sponsor/"; ---
-
-
- - - - - +
+
+ + + + + - - - - - -
-
-
-
- -
-

- EuroPython -

+ + + + +
-

- Discover the latest Python trends, learn from 180+ expert speakers, - network with fellow developers, enjoy social events, and explore open - spaces to spark new ideas. -

-
- -
-
- +
+
+
+ +
+

+ EuroPython +

+
+

+ Discover the latest Python trends, learn from 180+ expert speakers, + network with fellow developers, enjoy social events, and explore open + spaces to spark new ideas. +

-
- + +
+
+ +
+
+ +
-
- -
-
- -
-
- + +
+
+ +
+
+ +
-
-
-
-
- -
- EuroPython 2025 Hero Image -
-
- -
-
-
- - - -
-
-

7

-

Days

+
+
+
+ +
+ EuroPython 2025 Hero Image
-
-
- +
+
+
- - + +
+
+

7

+

Days

+
-
-

1.3k+

-

Attendees

-
-
-
-
- +
- - - + +
+
+

1.3k+

+

Attendees

+
-
-

180+

-

Speakers

+
+
+ +
+
+

180+

+

Speakers

+
-
-
+ diff --git a/src/components/sections/hero/icon-label.astro b/src/components/sections/hero/icon-label.astro index 6b4f8dbed..a18411fe5 100644 --- a/src/components/sections/hero/icon-label.astro +++ b/src/components/sections/hero/icon-label.astro @@ -12,7 +12,3 @@ import Icon from "@ui/Icon.astro"; {label} - From 3225c72798775e04e1a5beaa4882dca79ff5c6ad Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 14:40:47 +0200 Subject: [PATCH 14/15] Clean up: Port Map component to Astro. --- src/components/{map/map.tsx => Map.astro} | 8 +++---- src/components/link/link.tsx | 27 ----------------------- src/components/map/index.tsx | 1 - src/pages/[...slug].astro | 2 +- 4 files changed, 5 insertions(+), 33 deletions(-) rename src/components/{map/map.tsx => Map.astro} (70%) delete mode 100644 src/components/link/link.tsx delete mode 100644 src/components/map/index.tsx diff --git a/src/components/map/map.tsx b/src/components/Map.astro similarity index 70% rename from src/components/map/map.tsx rename to src/components/Map.astro index f41cd6c02..ebe0b858c 100644 --- a/src/components/map/map.tsx +++ b/src/components/Map.astro @@ -1,10 +1,10 @@ -export const Map = () => ( + -); + diff --git a/src/components/link/link.tsx b/src/components/link/link.tsx deleted file mode 100644 index 3589e7711..000000000 --- a/src/components/link/link.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import clsx from "clsx"; - -export const Link = ({ - href, - children, - className, - node, - ...props -}: { - href: string; - children: React.ReactNode; - className?: string; - node?: any; -}) => { - return ( - - {children} - - ); -}; diff --git a/src/components/map/index.tsx b/src/components/map/index.tsx deleted file mode 100644 index fedda8187..000000000 --- a/src/components/map/index.tsx +++ /dev/null @@ -1 +0,0 @@ -export { Map } from "./map"; diff --git a/src/pages/[...slug].astro b/src/pages/[...slug].astro index 54c62c626..b1530c226 100644 --- a/src/pages/[...slug].astro +++ b/src/pages/[...slug].astro @@ -3,7 +3,7 @@ import { type CollectionEntry, getCollection } from "astro:content"; import Layout from "@layouts/MarkdownLayout.astro"; import Separator from "@ui/Separator.astro"; -import { Map } from "@components/map"; +import Map from "@components/Map.astro"; import YouTube from "@ui/YouTube.astro"; import HighlightCard from "@components/highlight-list/highlight-card.astro"; import HighlightItem from "@components/highlight-list/highlight-item.astro"; From 97b340559311426c99abe86559845fd5e3d8a7f9 Mon Sep 17 00:00:00 2001 From: Niko Date: Thu, 15 May 2025 15:01:03 +0200 Subject: [PATCH 15/15] Clean up: Port Note and upgrade styles. --- src/components/note/index.tsx | 1 - src/components/note/note.tsx | 7 --- src/components/ui/Note.astro | 56 +++++++++++++++++++ src/content/pages/sponsorship/information.mdx | 6 +- src/layouts/ScheduleLayout.astro | 6 +- src/pages/[...slug].astro | 2 +- 6 files changed, 62 insertions(+), 16 deletions(-) delete mode 100644 src/components/note/index.tsx delete mode 100644 src/components/note/note.tsx create mode 100644 src/components/ui/Note.astro diff --git a/src/components/note/index.tsx b/src/components/note/index.tsx deleted file mode 100644 index a346fb703..000000000 --- a/src/components/note/index.tsx +++ /dev/null @@ -1 +0,0 @@ -export { Note } from "./note"; diff --git a/src/components/note/note.tsx b/src/components/note/note.tsx deleted file mode 100644 index e9790626f..000000000 --- a/src/components/note/note.tsx +++ /dev/null @@ -1,7 +0,0 @@ -export const Note = ({ children }: { children: React.ReactNode }) => { - return ( -

- {children} -

- ); -}; diff --git a/src/components/ui/Note.astro b/src/components/ui/Note.astro new file mode 100644 index 000000000..0177cbe2b --- /dev/null +++ b/src/components/ui/Note.astro @@ -0,0 +1,56 @@ +--- + +interface Props { + type: "warning" | "info" | "success" | "error"; + title?: string; + icon?: string; +} + +const { type="info", title, icon } = Astro.props; + +// Define styles for different note types +const styles = { + warning: { + bg: "bg-[rgb(255,252,204)]", + text: "text-[rgb(153,101,21)]", + border: "border-[rgb(255,204,0)]", + defaultIcon: "fas fa-exclamation-triangle fa-2x", + defaultTitle: "Warning" + }, + info: { + bg: "bg-[rgb(229,246,253)]", + text: "text-[rgb(27,95,133)]", + border: "border-[rgb(83,177,234)]", + defaultIcon: "fas fa-info-circle fa-2x", + defaultTitle: "Info" + }, + success: { + bg: "bg-[rgb(237,247,237)]", + text: "text-[rgb(48,112,60)]", + border: "border-[rgb(98,187,112)]", + defaultIcon: "fas fa-check-circle fa-2x", + defaultTitle: "Success" + }, + error: { + bg: "bg-[rgb(253,237,237)]", + text: "text-[rgb(156,38,38)]", + border: "border-[rgb(244,99,99)]", + defaultIcon: "fas fa-times-circle fa-2x", + defaultTitle: "Error" + } +}; + +const currentStyle = styles[type]; +const noteIcon = icon || currentStyle.defaultIcon; +const noteTitle = title || currentStyle.defaultTitle; +--- + +

+ { noteIcon && + + } + + {title && {noteTitle}:} + + +

diff --git a/src/content/pages/sponsorship/information.mdx b/src/content/pages/sponsorship/information.mdx index 444410a91..41741910f 100644 --- a/src/content/pages/sponsorship/information.mdx +++ b/src/content/pages/sponsorship/information.mdx @@ -9,7 +9,7 @@ subtitle: This page lists all sponsor deliverables and deadlines to help you plan and make the most of your sponsorship. -⚠️ All deadlines below are **hard deadlines**. +All deadlines below are **hard deadlines**. Unfortunately, we won’t be able to accept late submissions or offer refunds if anything is missed. @@ -135,7 +135,7 @@ However, we strongly recommend keeping booths staffed throughout the opening hou On top of what is already included in your booth as part of the package, you can order add-ons, such as TV sets and furniture for your booth. -ℹ️ Packages of **Platinum and above** already include **a TV and stand** as part of the booth. +Packages of **Platinum and above** already include **a TV and stand** as part of the booth. Gold and Silver sponsors can order a TV and stand separately, if needed - **⏲️ Deadline** for booth customisation order: **Sunday, 8 June 2025**. @@ -364,7 +364,7 @@ Creative Commons license to avoid copyright issues or strikes on our YouTube cha You can submit different video files or reuse the same video in both. The number of video ads you submit is up to you. We recommend **2 to 10** files. Higher sponsorship levels will receive more ad share. - **Important**: To avoid attachment size limits, please upload your videos to a file-sharing service + **Important**: To avoid attachment size limits, please upload your videos to a file-sharing service (e.g. Dropbox, Google Drive, WeTransfer, OneDrive) and send us the download link. - **⏲️ Deadline** for submitting video ad links: **Monday, 23 June 2025** diff --git a/src/layouts/ScheduleLayout.astro b/src/layouts/ScheduleLayout.astro index 59de87c24..ce3606d11 100644 --- a/src/layouts/ScheduleLayout.astro +++ b/src/layouts/ScheduleLayout.astro @@ -1,6 +1,7 @@ --- import Layout from "@layouts/Layout.astro"; import Section from "@ui/Section.astro"; +import Note from "@ui/Note.astro"; export interface Props { title?: string; @@ -16,10 +17,7 @@ const { title, description } = Astro.props;
-

- - Important: This is an early version of the schedule and may still change. If you're planning travel around specific sessions, please keep that in mind. -

+ This is an early version of the schedule and may still change. If you're planning travel around specific sessions, please keep that in mind.
diff --git a/src/pages/[...slug].astro b/src/pages/[...slug].astro index b1530c226..08de2244c 100644 --- a/src/pages/[...slug].astro +++ b/src/pages/[...slug].astro @@ -7,7 +7,7 @@ import Map from "@components/Map.astro"; import YouTube from "@ui/YouTube.astro"; import HighlightCard from "@components/highlight-list/highlight-card.astro"; import HighlightItem from "@components/highlight-list/highlight-item.astro"; -import { Note } from "@components/note"; +import Note from "@ui/Note.astro"; import SponsorTiers from "@components/sponsor-tiers/sponsor-tiers.astro"; import Accordion from "@components/accordion/accordion.astro"; import Button from "@ui/Button.astro";