diff --git a/components/press-logos/index.js b/components/press-logos/index.js
index a77398e0..0ef6db82 100644
--- a/components/press-logos/index.js
+++ b/components/press-logos/index.js
@@ -8,3 +8,4 @@ export { default as NPR } from './npr'
export { default as Bloomberg } from './bloomberg'
export { default as CNBC } from './cnbc'
export { default as CBSNews } from './cbs-news'
+export { default as WashingtonPost } from './washington-post'
diff --git a/components/press-logos/washington-post.js b/components/press-logos/washington-post.js
new file mode 100644
index 00000000..5eab92f0
--- /dev/null
+++ b/components/press-logos/washington-post.js
@@ -0,0 +1,51 @@
+import { useThemeUI } from 'theme-ui'
+
+const Logo = () => {
+ const { theme } = useThemeUI()
+
+ return (
+
+ )
+}
+
+export default Logo
diff --git a/data/press.js b/data/press.js
index 7743e381..3a602476 100644
--- a/data/press.js
+++ b/data/press.js
@@ -1,4 +1,9 @@
const highlights = [
+ {
+ source: 'Washington Post',
+ href: 'https://www.washingtonpost.com/climate-environment/interactive/2023/extreme-heat-wet-bulb-globe-temperature/',
+ date: '09-05-2023',
+ },
{
source: 'CBS News',
href: 'https://www.cbs.com/shows/video/M7H_yUdOiUw_E0fW5l_SP_V786PBhjI0/',
@@ -19,11 +24,6 @@ const highlights = [
href: 'https://www.latimes.com/politics/story/2021-09-08/what-is-the-california-climate-credit-does-it-cut-pollution',
date: '09-08-2021',
},
- {
- source: 'Planet Money',
- href: 'https://www.npr.org/2021/05/07/994774148/emission-impossible',
- date: '05-07-2021',
- },
]
const press = [
diff --git a/pages/press.js b/pages/press.js
index f3253634..5cbacbd3 100644
--- a/pages/press.js
+++ b/pages/press.js
@@ -17,8 +17,8 @@ import {
Bloomberg,
LosAngelesTimes,
NationalGeographic,
- NPR,
CBSNews,
+ WashingtonPost,
} from '../components/press-logos'
const sx = {
@@ -42,10 +42,10 @@ const sx = {
const logos = {
'Los Angeles Times': ,
- 'Planet Money': ,
Bloomberg: ,
'National Geographic': ,
'CBS News': ,
+ 'Washington Post': ,
}
const getColors = () => {