Skip to content

Commit 0f53ebf

Browse files
content(src/components/templates/talks/index.tsx): update highlights
1 parent ba370d5 commit 0f53ebf

File tree

1 file changed

+16
-48
lines changed

1 file changed

+16
-48
lines changed

src/components/templates/talks/index.tsx

Lines changed: 16 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
/** @jsx jsx */
2-
import {createRef, FunctionComponent} from 'react';
2+
import {FunctionComponent} from 'react';
33

44
import {Flex} from '@theme-ui/components';
5-
import alicante from 'assets/cities/alicante.jpg';
6-
import amsterdam from 'assets/cities/amsterdam.jpg';
75
import berlin from 'assets/cities/berlin.jpg';
86
import brussels from 'assets/cities/brussels.jpg';
97
import goa from 'assets/cities/goa.jpg';
10-
import lodz from 'assets/cities/lodz.jpg';
8+
import london from 'assets/cities/london.jpg';
119
import oslo from 'assets/cities/oslo.jpg';
12-
import reactGlobalSummit from 'assets/cities/react-global-summit.jpg';
13-
import telAviv from 'assets/cities/tel-aviv.jpg';
1410
import {jsx, Styled as StyledTheme} from 'theme-ui';
1511

1612
import EventsListing from 'components/common/events-listing';
@@ -50,26 +46,26 @@ const Talks: FunctionComponent<PageProps> = (props) => {
5046
<EventsListing
5147
data={[
5248
{
53-
name: "React Global Summit",
54-
link: "https://events.geekle.us/react3/",
55-
city: "Online",
56-
thumbnail: reactGlobalSummit,
57-
date: "November 8, 2022",
49+
name: "React Day Berlin 2022",
50+
link: "https://reactday.berlin",
51+
city: "Berlin, Germany",
52+
thumbnail: berlin,
53+
date: "December 2, 2022",
54+
},
55+
{
56+
name: "React Advanced London 2022",
57+
link: "https://reactadvanced.com/",
58+
city: "London, United Kingdom",
59+
thumbnail: london,
60+
date: "October 21, 2022",
5861
},
5962
{
6063
name: "React Brussels 2022",
6164
link: "https://www.react.brussels",
6265
city: "Brussels, Belgium",
6366
thumbnail: brussels,
6467
date: "October 14, 2022",
65-
},
66-
{
67-
name: "React Alicante 2022",
68-
link: "https://reactalicante.es",
69-
city: "Alicante, Spain",
70-
thumbnail: alicante,
71-
date: "September 30, 2022",
72-
},
68+
},å
7369
{
7470
name: "NDC Oslo 2022",
7571
link:
@@ -84,35 +80,7 @@ const Talks: FunctionComponent<PageProps> = (props) => {
8480
city: "Goa, India",
8581
thumbnail: goa,
8682
date: "September 23, 2022",
87-
},
88-
{
89-
name: "React Berlin Meetup",
90-
link: "https://www.meetup.com/react-berlin-meetup/events/287841091",
91-
city: "Berlin, Germany",
92-
thumbnail: berlin,
93-
date: "September 8, 2022",
94-
},
95-
{
96-
name: "Dev Conf 2022",
97-
link: "https://devconf.pl/speakers/matheus-albuquerque",
98-
city: "Łódź, Poland",
99-
thumbnail: lodz,
100-
date: "September 2, 2022",
101-
},
102-
{
103-
name: "React Next 2022",
104-
link: "https://www.react-next.com",
105-
city: "Tel-Aviv, Israel",
106-
thumbnail: telAviv,
107-
date: "June 28, 2022",
108-
},
109-
{
110-
name: "React Summit 2022",
111-
link: "https://reactsummit.com",
112-
city: "Amsterdam, Netherlands",
113-
thumbnail: amsterdam,
114-
date: "June 17, 2022",
115-
},
83+
},å
11684
]}
11785
/>
11886

0 commit comments

Comments
 (0)