|
1 | 1 | import React, { FC, useEffect } from "react";
|
2 |
| -import SectionWrapper from "../../components/SectionWrapper/SectionWrapper"; |
3 |
| -import { Color } from "../../styles/colors"; |
| 2 | +import SectionWrapper from "@components/SectionWrapper/SectionWrapper"; |
| 3 | +import { Color } from "@styles/colors"; |
4 | 4 | import {
|
5 | 5 | StyledMarginBottom,
|
6 | 6 | StyledSpeakersSection,
|
7 | 7 | StyledTitleContainer,
|
8 | 8 | StyledTitleIcon,
|
9 | 9 | StyledWaveContainer,
|
10 | 10 | } from "../Talks/Talks.style";
|
11 |
| -import LessThanDarkBlueIcon from "../../assets/images/LessThanDarkBlueIcon.svg"; |
12 |
| -import TitleSection from "../../components/SectionTitle/TitleSection"; |
13 |
| -import MoreThanBlueIcon from "../../assets/images/MoreThanBlueIcon.svg"; |
14 |
| -import { useFetchTalks } from "../../hooks/useFetchTalks"; |
| 11 | +import LessThanDarkBlueIcon from "@assets/images/LessThanDarkBlueIcon.svg"; |
| 12 | +import TitleSection from "@components/SectionTitle/TitleSection"; |
| 13 | +import MoreThanBlueIcon from "@assets/images/MoreThanBlueIcon.svg"; |
| 14 | +import { useFetchTalks } from "@hooks/useFetchTalks"; |
15 | 15 | import { TalkCard } from "../Talks/components/TalkCard";
|
16 |
| -import conferenceData from "../../data/2025.json"; |
| 16 | +import conferenceData from "@data/2025.json"; |
17 | 17 | import { styled } from "styled-components";
|
18 |
| -import { BIG_BREAKPOINT } from "../../constants/BreakPoints"; |
19 |
| -import { useSentryErrorReport } from "../../hooks/useSentryErrorReport"; |
| 18 | +import { BIG_BREAKPOINT } from "@constants/BreakPoints"; |
| 19 | +import { useSentryErrorReport } from "@hooks/useSentryErrorReport"; |
20 | 20 |
|
21 | 21 | const StyledSection = styled.section`
|
22 |
| -{ |
23 | 22 | display: flex;
|
24 | 23 | padding: 0 10rem;
|
25 | 24 | flex-wrap: wrap;
|
26 |
| -} |
27 | 25 |
|
28 | 26 | @media (max-width: ${BIG_BREAKPOINT}px) {
|
29 | 27 | padding: 1rem;
|
@@ -103,6 +101,7 @@ const Workshops: FC<React.PropsWithChildren<unknown>> = () => {
|
103 | 101 | key={track.id}
|
104 | 102 | showTrack={true}
|
105 | 103 | year={conferenceData.edition}
|
| 104 | + openFeedbackId={conferenceData.openFeedbackId} |
106 | 105 | />
|
107 | 106 | ))
|
108 | 107 | )}
|
|
0 commit comments