Skip to content

Commit

Permalink
use BLURRED insted of TRACED_SVG gatsbyjs/gatsby#11867
Browse files Browse the repository at this point in the history
  • Loading branch information
dowdiness committed Mar 3, 2021
1 parent a906f0b commit 82180a7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/components/Article/ArticleSocialAccounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const ArticleSocialAccounts: React.FCX<Partial<ArticleSocialAccountsProps
alt="linktree"
className="rounded-full"
layout="fixed"
placeholder="tracedSVG"
placeholder="blurred"
/>
</a>
)}
Expand All @@ -48,7 +48,7 @@ export const ArticleSocialAccounts: React.FCX<Partial<ArticleSocialAccountsProps
alt="hatena"
className="w-16 h-16 rounded-full "
layout="fixed"
placeholder="tracedSVG"
placeholder="blurred"
/>
</a>
)}
Expand All @@ -61,7 +61,7 @@ export const ArticleSocialAccounts: React.FCX<Partial<ArticleSocialAccountsProps
alt="bandcamp"
className="w-10 h-10 blend-multiply"
layout="fixed"
placeholder="tracedSVG"
placeholder="blurred"
/>
</a>
)}
Expand All @@ -74,7 +74,7 @@ export const ArticleSocialAccounts: React.FCX<Partial<ArticleSocialAccountsProps
alt="minnakikeru"
className="w-full h-full blend-multiply"
layout="fixed"
placeholder="tracedSVG"
placeholder="blurred"
/>
</a>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/articles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const pageQuery = graphql`
}
zine: file(relativePath: { eq: "yowaizine.png" }) {
childImageSharp {
gatsbyImageData(width: 768, layout: FULL_WIDTH, placeholder: TRACED_SVG)
gatsbyImageData(width: 768, layout: FULL_WIDTH, placeholder: BLURRED)
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ export const pageQuery = graphql`
}
genki: file(relativePath: { eq: "genki.png" }) {
childImageSharp {
gatsbyImageData(width: 768, layout: FULL_WIDTH, placeholder: TRACED_SVG)
gatsbyImageData(width: 768, layout: FULL_WIDTH, placeholder: BLURRED)
}
}
zine: file(relativePath: { eq: "yowaizine.png" }) {
childImageSharp {
gatsbyImageData(width: 768, layout: FULL_WIDTH, placeholder: TRACED_SVG)
gatsbyImageData(width: 768, layout: FULL_WIDTH, placeholder: BLURRED)
}
}
posts: allContentfulMarkdownArticle(sort: {fields: publishedAt, order: DESC}) {
Expand Down

0 comments on commit 82180a7

Please sign in to comment.