Skip to content

Commit

Permalink
fixing social sharing URL and description (#3974)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelnabors authored Oct 22, 2021
1 parent ad8086e commit 011f587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Seo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const Seo = withRouter(
<meta
property="og:url"
key="og:url"
content={`https://reactjs.org${router.pathname}`}
content={`https://beta.reactjs.org${router.pathname}`}
/>
{title != null && (
<meta property="og:title" content={title} key="og:title" />
Expand All @@ -58,7 +58,7 @@ export const Seo = withRouter(
<meta
property="og:image"
key="og:image"
content={`https://reactjs.org${image}`}
content={`https://beta.reactjs.org${image}`}
/>

{/* TWITTER */}
Expand All @@ -83,7 +83,7 @@ export const Seo = withRouter(
<meta
name="twitter:image"
key="twitter:image"
content={`https://reactjs.org${image}`}
content={`https://beta.reactjs.org${image}`}
/>

{children}
Expand Down

0 comments on commit 011f587

Please sign in to comment.