Skip to content

Commit 1d9a6ec

Browse files
committed
update meta
1 parent f820f9d commit 1d9a6ec

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

gatsby-config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ module.exports = {
77
name: `Brian Ruiz`,
88
summary: `Brian Ruiz is a Software Engineer based out of Houston, TX.`,
99
},
10-
description: `Brian Ruiz is a Software Engineer based out of Houston, TX. Here you'll find his portfolio tech blog posts.`,
10+
description: `Brian Ruiz is a Software Engineer based out of Houston, TX.`,
1111
siteUrl: `https://b-r.io`,
1212
social: {
13-
twitter: `brianruizy`,
1413
linkedin: `brianruizy`,
1514
github: `BrianRuizy`,
1615
instagram: `brianruizy`,
16+
youtube: `UCCIFp-Se_xjfYc94H04oK7Q`,
1717
},
1818
},
1919
plugins: [

src/components/seo.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Seo = ({ description, lang, meta, title }) => {
3636
lang,
3737
}}
3838
title={title}
39-
titleTemplate={defaultTitle ? `%s | ${defaultTitle}` : null}
39+
titleTemplate={defaultTitle ? `${defaultTitle} | %s ` : null}
4040
meta={[
4141
{
4242
name: `description`,
@@ -50,6 +50,10 @@ const Seo = ({ description, lang, meta, title }) => {
5050
property: `og:description`,
5151
content: metaDescription,
5252
},
53+
{
54+
property: `og:image`,
55+
content: `https://b-r.io/og-image.png`,
56+
},
5357
{
5458
property: `og:type`,
5559
content: `website`,

src/pages/index.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const Index = ({ data, location }) => {
6464
if (posts.length === 0) {
6565
return (
6666
<Layout location={location} title={siteTitle}>
67-
<Seo title="Home" />
67+
<Seo title="Portfolio" />
6868
<p>
6969
No blog posts found. Add markdown posts to "content/posts" (or the
7070
directory you specified for the "gatsby-source-filesystem" plugin in
@@ -76,8 +76,7 @@ const Index = ({ data, location }) => {
7676

7777
return (
7878
<Layout location={location} title={siteTitle}>
79-
<Seo title="Home" />
80-
79+
<Seo title="Portfolio" />
8180
<Container
8281
maxWidth="string"
8382
disableGutters

static/og-image.png

519 KB
Loading

0 commit comments

Comments
 (0)