diff --git a/frontend/src/components/layouts/EventHomepage/EventInformation/EventInformation.module.scss b/frontend/src/components/layouts/EventHomepage/EventInformation/EventInformation.module.scss
deleted file mode 100644
index 879266a43..000000000
--- a/frontend/src/components/layouts/EventHomepage/EventInformation/EventInformation.module.scss
+++ /dev/null
@@ -1,135 +0,0 @@
-@use "../../../../styles/mixins";
-
-.preHeading {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 12px;
-
- .organizer {
- display: flex;
- align-items: center;
- gap: 8px;
-
- .organizerLogo {
- width: 28px;
- height: 28px;
- overflow: hidden;
- display: flex;
- align-items: center;
-
- img {
- width: 100%;
- height: auto;
- display: block;
- object-fit: contain;
- border-radius: 4px;
- }
- }
-
- .organizerName {
- margin: 0;
- font-size: 0.875rem;
- font-weight: 600;
- color: var(--secondary-color);
-
- a {
- color: inherit;
- text-decoration: none;
-
- &:hover {
- color: var(--primary-color);
- }
- }
- }
- }
-
- .shareButtons button {
- color: var(--accent-muted);
-
- &:hover {
- color: var(--primary-color);
- }
- }
-
- @include mixins.respond-below(sm) {
- flex-direction: column;
- align-items: flex-start;
- gap: 12px;
- }
-}
-
-.eventTitle {
- font-size: 2rem;
- font-weight: 700;
- margin: 0 0 20px 0;
- color: var(--primary-text-color);
- line-height: 1.2;
- letter-spacing: -0.02em;
-
- @include mixins.respond-below(md) {
- font-size: 1.75rem;
- }
-
- @include mixins.respond-below(sm) {
- font-size: 1.5rem;
- margin-bottom: 16px;
- }
-}
-
-.eventInfo {
- display: flex;
- flex-direction: column;
- gap: 12px;
-
- .eventDetail {
- display: flex;
- flex-direction: column;
-
- .details {
- display: flex;
- align-items: flex-start;
- gap: 10px;
-
- svg {
- color: var(--accent-muted);
- flex-shrink: 0;
- margin-top: 2px;
- }
- }
-
- .detail {
- display: flex;
- flex-direction: column;
- color: var(--primary-text-color);
- font-size: 0.9375rem;
-
- b {
- font-weight: 600;
- }
-
- > div {
- color: var(--secondary-color);
- font-size: 0.875rem;
- margin-top: 2px;
- }
- }
- }
-
- .viewOnGoogleMaps {
- padding: 0;
- margin-top: 4px;
- color: var(--primary-color);
- font-weight: 500;
- height: auto;
-
- &:hover {
- text-decoration: underline;
- }
-
- svg {
- color: var(--primary-color) !important;
- width: 14px !important;
- }
- }
-}
diff --git a/frontend/src/components/layouts/EventHomepage/EventInformation/index.tsx b/frontend/src/components/layouts/EventHomepage/EventInformation/index.tsx
deleted file mode 100644
index 356eaaaed..000000000
--- a/frontend/src/components/layouts/EventHomepage/EventInformation/index.tsx
+++ /dev/null
@@ -1,105 +0,0 @@
-import {IconCalendar, IconExternalLink, IconMapPin, IconWorld} from "@tabler/icons-react";
-import classes from "./EventInformation.module.scss";
-import {formatAddress, isAddressSet} from "../../../../utilites/addressUtilities.ts";
-import {t} from "@lingui/macro";
-import {Anchor, Button} from "@mantine/core";
-import {LoadingMask} from "../../../common/LoadingMask";
-import {ShareComponent} from "../../../common/ShareIcon";
-import {eventCoverImageUrl, eventHomepageUrl, imageUrl, organizerHomepageUrl} from "../../../../utilites/urlHelper.ts";
-import {FC} from "react";
-import {Event, Organizer} from "../../../../types.ts";
-import {EventDateRange} from "../../../common/EventDateRange";
-
-export const EventInformation: FC<{
- event: Event,
- organizer: Organizer,
-}> = ({event, organizer}) => {
-
- if (!event || !organizer) {
- return