Skip to content

Commit 32fb4b4

Browse files
committed
feat: disable speaker links
1 parent b7c68f5 commit 32fb4b4

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/views/Home/components/SpeakersCarousel/SpeakerSwiper.tsx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import styled from "styled-components";
55
import {Color} from "../../../../styles/colors";
66
import "swiper/swiper-bundle.min.css";
77
import "./SpeakersCarousel.scss";
8-
import {Link} from "react-router";
98
import conferenceData from "../../../../data/2025.json";
10-
import {ROUTE_SPEAKER_DETAIL} from "../../../../constants/routes";
119
import {useFetchSpeakers} from "../../../Speakers/UseFetchSpeakers";
1210
import * as Sentry from "@sentry/react";
1311
import {ISpeaker} from "../../../../types/speakers";
@@ -40,9 +38,9 @@ const SpeakerSwiper: FC<React.PropsWithChildren<unknown>> = () => {
4038
const {isLoading, data, error} = useFetchSpeakers();
4139

4240
const victorRentea: ISpeaker = {
43-
id: "1f247b87-4af0-4f70-be44-f139bf3f726a",
41+
id: "8f5f4c31-232b-4e04-b736-6b2775c939cf",
4442
fullName: "Victor Rentea",
45-
bio: "Java Champion from Bucharest",
43+
bio: "With two decades of experience, Victor is a Java Champion working as a trainer for top companies in Europe. More than five thousand developers of 120 companies attended his workshops, so every week he has the opportunity to debate with bright engineers the challenges faced by their projects. In return, Victor summarizes key learning points from these workshops in conference talks and online meetups for the European Software Crafters, the world’s largest community around architecture, refactoring, and testing. Find out how Victor can help you on https://victorrentea.ro: training catalog, consultancy, and YouTube playlists of his talks.",
4644
speakerImage: "https://sessionize.com/image/3031-0o0o0-a3r6JkTgm9aUHJXBhbvnWQ.jpg?download=victor-rentea.jpg",
4745
linkedInUrl: {
4846
url: "https://x.com/victorrentea",
@@ -55,7 +53,7 @@ const SpeakerSwiper: FC<React.PropsWithChildren<unknown>> = () => {
5553
linkType: "Twitter",
5654
title: "Twitter"
5755
},
58-
tagLine: "Java Champion from Bucharest",
56+
tagLine: "Java Champion and Trainer",
5957
};
6058

6159
const cachedSpeakers = React.useMemo(() => {
@@ -107,18 +105,18 @@ const SpeakerSwiper: FC<React.PropsWithChildren<unknown>> = () => {
107105
>
108106
{cachedSpeakers.map((speaker) => (
109107
<SwiperSlide key={speaker.id}>
110-
<Link
108+
{/*<Link
111109
to={`${ROUTE_SPEAKER_DETAIL}/${speaker.id}`}
112110
style={{textDecoration: "none"}}
113-
>
111+
>*/}
114112
<StyledSlideImage
115113
src={speaker.speakerImage}
116114
alt={speaker.fullName}
117115
/>
118116
<StyledSlideContain>
119117
<StyledSlideText>{speaker.fullName}</StyledSlideText>
120118
</StyledSlideContain>
121-
</Link>
119+
{/*</Link>*/}
122120
</SwiperSlide>
123121
))}
124122
</Swiper>

0 commit comments

Comments
 (0)