|
1 | 1 | --- |
2 | | -import Hero from "../components/hero2/hero.astro"; |
3 | | -import Layout from "../layouts/HomePageLayout.astro"; |
4 | | -import DeadlineCard from "../components/deadline-card.astro"; |
5 | 2 | import { getCollection } from "astro:content"; |
6 | | -import Accent from "../components/accent/accent.astro"; |
7 | | -import Prague from "../components/hero-section/prague.astro"; |
8 | | -import SocialSubscribe from '../components/social/SocialSubscribe.astro'; |
9 | 3 |
|
10 | | -import * as intro from "../data/home/intro.md"; |
11 | | -import * as venue from "../data/home/prague.mdx"; |
| 4 | +import Layout from "@layouts/HomePageLayout.astro"; |
| 5 | +import Hero from "@components/hero2/hero.astro"; |
| 6 | +import Keynoters from "@components/keynoters/keynoters.astro"; |
| 7 | +import Updates from "@sections/updates.astro"; |
| 8 | +import Prague from "@sections/prague.astro"; |
| 9 | +import Sponsors from "@components/sponsors/sponsors.astro"; |
| 10 | +import Subscribe from "@sections/subscribe.astro"; |
12 | 11 |
|
13 | 12 | let deadlines = await getCollection("deadlines"); |
14 | 13 | deadlines = deadlines |
15 | 14 | .sort((a, b) => a.slug.localeCompare(b.slug)) |
16 | 15 | .reverse() |
17 | 16 | .slice(0, 3); |
18 | | -import Sponsors from "../components/sponsors/sponsors.astro"; |
19 | | -import KeynotersComponent from "../components/keynoters/keynoters.astro"; |
20 | | -import Updates from "@sections/updates.astro"; |
21 | | -import Prague from "@sections/prague.astro"; |
22 | 17 | --- |
23 | 18 |
|
24 | 19 | <Layout |
25 | 20 | title="EuroPython 2025 | July 14th-20th 2025 | Prague, Czech Republic & Remote" |
26 | 21 | 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." |
27 | 22 | > |
28 | 23 | <Hero /> |
29 | | - |
30 | 24 | <Updates /> |
31 | | - |
32 | | - <KeynotersComponent /> |
| 25 | + <Keynoters /> |
33 | 26 | <Prague /> |
34 | | - |
35 | | -<Fullbleed> |
36 | | - <div class="mt-32 w-full bg-[#d4d5e5] flex flex-col items-center justify-center py-08 px-4 text-center"> |
37 | | - <SocialSubscribe /> |
38 | | - </div> |
39 | | -</Fullbleed> |
40 | | - |
41 | 27 | <Sponsors /> |
| 28 | + <Subscribe /> |
42 | 29 | </Layout> |
0 commit comments