-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathMissingConferences.tsx
More file actions
33 lines (31 loc) · 1.04 KB
/
MissingConferences.tsx
File metadata and controls
33 lines (31 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React from 'react';
import Section from '@con/components/common/Section';
import SectionTitle from '@con/components/common/SectionTitle';
import { Link } from 'gatsby';
const MissingConferences: React.ComponentType = () => {
return (
<Section className="py-20 relative overflow-hidden" section="missing">
<div className="container">
<SectionTitle dark>
<strong>What happened last year?</strong>
</SectionTitle>
<p className="conf__section-subtitle dark mb-0">
Watch the conference recordings on Youtube and find more information on{' '}
<Link className="text-white" to="/con/2022/review">
our review
</Link>
!
</p>
<a
className="mt-30 mx-auto conf__button"
href="https://www.youtube.com/playlist?list=PL3hoUDjLa7eQfYOEmuQNG8he3AeOeWaz8"
target="_blank"
rel="noopener noreferrer"
>
Watch the conferences
</a>
</div>
</Section>
);
};
export default MissingConferences;