Skip to content

Commit

Permalink
update: preview image location (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuash committed Jun 10, 2022
1 parent f942af3 commit d532055
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
- Update validator and account details to not be found if bech32 is invalid
- Removed the use of NEXT_PUBLIC_URL
- Update graphql types generation structure (in preparation for third party modules)
- Update preview image location

# base-v2.1.0 - 2021-04-19

## Changes
Expand Down
1 change: 1 addition & 0 deletions src/configs/general_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"github": {
"reportIssue": "https://github.com/forbole/big-dipper-2.0-cosmos/issues"
},
"previewImage": "https://bigdipper.live/images/big-dipper-social-media.png",
"version": "base-v2.1.0"
}
4 changes: 3 additions & 1 deletion src/screens/app/utils.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { generalConfig } from '@configs';

export const OPEN_GRAPH_SEO = {
type: 'website',
site_name: 'Big Dipper',
images: [
{
url: 'https://bigdipper.live/images/big-dipper-social-media.png',
url: generalConfig.previewImage,
width: 800,
height: 600,
alt: 'Preview Photo',
Expand Down

0 comments on commit d532055

Please sign in to comment.