Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
4 changes: 0 additions & 4 deletions public/icons/calendar.svg

This file was deleted.

4 changes: 0 additions & 4 deletions public/icons/pin.svg

This file was deleted.

4 changes: 0 additions & 4 deletions public/img/list-item.svg

This file was deleted.

Binary file removed public/placeholder.png
Binary file not shown.
File renamed without changes
File renamed without changes
Empty file removed public/sponsor-swag/.gitkeep
Empty file.
Binary file removed src/assets/placeholder.png
Binary file not shown.
1 change: 0 additions & 1 deletion src/assets/placeholder.svg

This file was deleted.

Binary file removed src/assets/prague.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import SocialLinks from "@components/SocialLinks.astro";
import links from "@data/links.json";
import EPSLogo from "../../public/eps-logo.svg";
import EPSLogo from "/public/eps-logo.svg";
const buildTimestamp = __TIMESTAMP__;
const gitVersion = __GIT_VERSION__;
Expand Down
8 changes: 4 additions & 4 deletions src/components/map/map.tsx → src/components/Map.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const Map = () => (
<Fragment is:raw>
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d10245.064741908278!2d14.4290206!3d50.0625764!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0x4d26855708eb61f7!2sPrague%20Congress%20Centre!5e0!3m2!1sen!2suk!4v1676555813425!5m2!1sen!2suk"
title="Map"
className="w-full aspect-video max-w-[800px] border-4 border-white rounded-lg shadow-lg"
allowFullScreen={true}
class="w-full aspect-video max-w-[800px] border-4 border-white rounded-lg shadow-lg"
allowFullScreen="true"
loading="lazy"
referrerPolicy="no-referrer-when-downgrade"
></iframe>
);
</Fragment>
Comment on lines +1 to +10
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI I updated this in another PR: https://github.com/EuroPython/website/pull/1227/files#diff-d7d44fd3cc527b8dbcaa8b661a0eb769d94080a4ae4fccc535320ffdc9fa5fefR1

We need to have the component map generic and be able to pass coordinates from google maps, so it's reusable at multiple places

12 changes: 0 additions & 12 deletions src/components/accent/accent.astro

This file was deleted.

Binary file removed src/components/accent/astronomical_clock.png
Binary file not shown.
9 changes: 0 additions & 9 deletions src/components/accent/astronomical_clock.svg

This file was deleted.

34 changes: 0 additions & 34 deletions src/components/benefits-list/benefit-item.astro

This file was deleted.

1 change: 0 additions & 1 deletion src/components/benefits-list/benefits-list.astro

This file was deleted.

30 changes: 0 additions & 30 deletions src/components/button-link/button-link.astro

This file was deleted.

5 changes: 0 additions & 5 deletions src/components/card/card-container.tsx

This file was deleted.

4 changes: 2 additions & 2 deletions src/components/hero-section/title-with-cta.astro
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -19,7 +19,7 @@ const { title, subtitle, buttonText, buttonUrl } = Astro.props;
{
buttonText && buttonUrl && (
<div class="mt-8">
<ButtonLink url={buttonUrl}>{buttonText}</ButtonLink>
<Button url={buttonUrl}>{buttonText}</Button>
</div>
)
}
Expand Down
Loading