Skip to content

Commit f19ecd2

Browse files
committed
chore: update deps and seo
1 parent 8dbb2ec commit f19ecd2

File tree

4 files changed

+31
-18
lines changed

4 files changed

+31
-18
lines changed

gatsby-config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ module.exports = {
33
siteUrl: 'https://blobs.app',
44
name: 'blobs.app',
55
description: 'Generate beautiful blob shapesfor web and flutter apps',
6+
descriptionLong:
7+
'Customizable blobs as SVG and Flutter Widget. Create random or fixed blobs, loop, animate, clip them with ease',
68
short_name: 'Blob generator',
79
start_url: '/',
810
background_color: '#d7819b',
@@ -35,6 +37,13 @@ module.exports = {
3537
icon: 'src/images/blobs.png',
3638
},
3739
},
40+
41+
{
42+
resolve: 'gatsby-plugin-google-analytics',
43+
options: {
44+
trackingId: 'UA-167428362-1',
45+
},
46+
},
3847
'gatsby-plugin-offline',
3948
'@chakra-ui/gatsby-plugin',
4049
],

package.json

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@
1010
"@chakra-ui/react": "^1.3.3",
1111
"@emotion/react": "^11.1.5",
1212
"@emotion/styled": "^11.1.5",
13-
"@fontsource/dm-mono": "^4.2.2",
14-
"@fontsource/dm-sans": "^4.2.2",
15-
"@fontsource/inter": "^4.2.2",
16-
"@fontsource/nunito": "^4.2.2",
17-
"@fontsource/oxygen": "^4.2.2",
18-
"@fontsource/roboto-mono": "^4.2.2",
19-
"@fontsource/rubik": "^4.2.2",
20-
"@risingstack/react-easy-state": "^6.3.0",
2113
"blobshape": "^1.0.0",
2214
"dynamics.js": "^1.1.5",
2315
"framer-motion": "^3.10.0",
@@ -36,7 +28,6 @@
3628
"gatsby-transformer-rehype": "^2.0.0",
3729
"gatsby-transformer-remark": "^3.0.0",
3830
"gatsby-transformer-sharp": "^3.0.0",
39-
"lo-icon": "git+ssh://git@github.com/lokesh-coder/lo-icon",
4031
"prismjs": "^1.23.0",
4132
"project-name-generator": "^2.1.9",
4233
"prop-types": "^15.7.2",
@@ -79,9 +70,9 @@
7970
},
8071
"repository": {
8172
"type": "git",
82-
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
73+
"url": "https://github.com/lokesh-coder/blobs.app"
8374
},
8475
"bugs": {
85-
"url": "https://github.com/gatsbyjs/gatsby/issues"
76+
"url": "https://github.com/lokesh-coder/blobs.app/issues"
8677
}
8778
}

src/components/seo.js

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ function SEO({ description, lang, meta, title }) {
2626
);
2727

2828
const metaDescription = description || site.siteMetadata.description;
29+
const metaDescriptionLong = site.siteMetadata.descriptionLong;
2930
const defaultTitle = site.siteMetadata?.title;
3031

3132
return (
@@ -46,15 +47,27 @@ function SEO({ description, lang, meta, title }) {
4647
},
4748
{
4849
property: 'og:description',
49-
content: metaDescription,
50+
content: metaDescriptionLong,
5051
},
5152
{
5253
property: 'og:type',
5354
content: 'website',
5455
},
56+
{
57+
property: 'og:url',
58+
content: 'https://blobs.app/',
59+
},
60+
{
61+
property: 'og:image',
62+
content: '/blobs_app_poster.png',
63+
},
5564
{
5665
name: 'twitter:card',
57-
content: 'summary',
66+
content: 'summary_large_image',
67+
},
68+
{
69+
name: 'twitter:url',
70+
content: 'https://blobs.app/',
5871
},
5972
{
6073
name: 'twitter:creator',
@@ -66,7 +79,11 @@ function SEO({ description, lang, meta, title }) {
6679
},
6780
{
6881
name: 'twitter:description',
69-
content: metaDescription,
82+
content: metaDescriptionLong,
83+
},
84+
{
85+
name: 'twitter:image',
86+
content: '/blobs_app_poster.png',
7087
},
7188
].concat(meta)}
7289
/>

yarn.lock

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9150,10 +9150,6 @@ lines-and-columns@^1.1.6:
91509150
resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00"
91519151
integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=
91529152

9153-
"lo-icon@git+ssh://git@github.com/lokesh-coder/lo-icon":
9154-
version "0.0.0"
9155-
resolved "git+ssh://git@github.com/lokesh-coder/lo-icon#7dce2640b655145091fc025bcc5f5f63883dc645"
9156-
91579153
load-bmfont@^1.3.1, load-bmfont@^1.4.0:
91589154
version "1.4.1"
91599155
resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9"

0 commit comments

Comments
 (0)