Skip to content

Commit da6acbb

Browse files
authored
Add link to mailing list and 2020 copy (#151)
* Add 2020 blank page * Add link to mailing list and 2020 copy * Fix title
1 parent b5a2ba5 commit da6acbb

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

src/components/notification/index.js

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import React from 'react'
2-
import { Link } from 'gatsby'
32
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
43
import { faBullhorn } from '@fortawesome/free-solid-svg-icons'
54

@@ -8,10 +7,15 @@ import styles from './notification.module.css'
87
const Notification = () => (
98
<div className={styles.notification}>
109
<FontAwesomeIcon icon={faBullhorn} aria-hidden className={styles.icon} />
11-
#WSC2019Conf &mdash; August 16&ndash;18 in San Francisco:{' '}
12-
<Link to="/2019/" className="link">
13-
Learn more
14-
</Link>
10+
<a
11+
href="https://writespeakcode.us4.list-manage.com/subscribe/post?u=5659d87448185ddd72045cf1a&amp;id=f195dc3634"
12+
className="link"
13+
target="_blank"
14+
rel="noopener noreferrer"
15+
>
16+
Subscribe to our mailing list
17+
</a>{' '}
18+
for updates on our community and events.
1519
</div>
1620
)
1721

src/pages/2020/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import React from 'react'
2+
3+
const Conference2020 = () => {
4+
return <h1>Write Speak Code 2020</h1>
5+
}
6+
7+
export default Conference2020

src/pages/2020/index.module.css

Whitespace-only changes.

src/pages/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import Img from 'gatsby-image'
55
import HomeLayout from '../layouts/home'
66
import SEO from '../components/seo'
77
import Sponsors from '../components/sponsors'
8-
98
import styles from './index.module.css'
109

1110
const IndexPage = ({ data }) => (
@@ -68,15 +67,16 @@ const IndexPage = ({ data }) => (
6867
<div className={styles.content}>
6968
<h1 className="title">Annual Conference</h1>
7069
<h2 className="subtitle">
71-
August 16&ndash;18, 2019 <br />
72-
Palace of Fine Arts &mdash; San Francisco, CA
70+
Next conference: 2020
71+
<br />
72+
Dates and location: TBD
7373
</h2>
7474
<p>
75-
Join us for three days designed to fully own your expertise through
76-
writing, speaking, and open source.
75+
Join us for a conference designed to fully own your expertise
76+
through writing, speaking, and open source.
7777
</p>
7878
<Link to="/2019/" className="link">
79-
2019 Conference Page
79+
View 2019 conference site
8080
</Link>
8181
</div>
8282
</div>

0 commit comments

Comments
 (0)