Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

image path typo fix #220

Merged
merged 1 commit into from
Jun 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pages/what-is-celestia.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const WhatIsCelestia = ({ data }) => {
property='og:description'
content="A complete beginner's guide to how Celestia works, its key benefits, and how anyone in the world will be able to create their own blockchain in minutes."
/>
<meta property='og:image' content={`${siteMeta}/what-is-celestia-og-image.png`} />
<meta property='og:image' content={`${siteMeta.siteUrl}/what-is-celestia-og-image.png`} />

<meta property='twitter:card' content='summary_large_image' />
<meta property='twitter:url' content='https://celestia.org/what-is-celestia/' />
Expand All @@ -55,7 +55,7 @@ const WhatIsCelestia = ({ data }) => {
property='twitter:description'
content="A complete beginner's guide to how Celestia works, its key benefits, and how anyone in the world will be able to create their own blockchain in minutes."
/>
<meta property='twitter:image' content={`${siteMeta}/what-is-celestia-og-image.png`} />
<meta property='twitter:image' content={`${siteMeta.siteUrl}/what-is-celestia-og-image.png`} />
</Helmet>
<Layout footerBoxes={FooterBoxes}>
<div className={"what-is-celestia"}>
Expand Down