Skip to content
This repository has been archived by the owner on Apr 9, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
revert changes
  • Loading branch information
catnose99 committed Mar 14, 2021
1 parent b026bda commit 1609584
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion content/blog/zenn-with-classmethod/index.md
Expand Up @@ -10,7 +10,7 @@ Zennは個人開発から脱却し、クラスメソッド株式会社のサー

---

早いもので[Zenn needs help](https://catnose99.com/blog/zenn-needs-help/)を書いてから4ヶ月が経ちました。実はこの記事を公開してから20以上の会社から連絡をいただきました。
早いもので[Zenn needs help](https://catnose99.com/zenn-needs-help/)を書いてから4ヶ月が経ちました。実はこの記事を公開してから20以上の会社から連絡をいただきました。

中には自分が愛用しているサービスの運営会社や、憧れていた会社からも声をかけていただきました。話はまとまらなかったものの、お話ができたことを心から嬉しく思います。

Expand Down
2 changes: 1 addition & 1 deletion gatsby-config.js
Expand Up @@ -3,7 +3,7 @@ module.exports = {
title: `Cat Knows`,
author: `CatNose`,
description: `CatNoseの個人ブログ。デザインやプログラミングの知見、生産性向上テクニックなどをストックしていきます。`,
siteUrl: `https://catnose99.com/blog`,
siteUrl: `https://catnose99.com`,
social: {
twitter: `catnose99`,
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/ShareButtons.js
Expand Up @@ -48,7 +48,7 @@ const ShareButtons = ({ slug, title, emoji }) => {
const encodedTitle = encodeURIComponent(
`${emoji || "🐱"}${title} | CatKnows`
);
const pageUrl = `https://catnose99.com/blog${slug}`;
const pageUrl = `https://catnose99.com${slug}`;
return (
<Wrapper>
<ShareTitle>SHARE</ShareTitle>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Expand Up @@ -19,7 +19,7 @@ class BlogIndex extends React.Component {
<Layout location={this.props.location} title={siteTitle}>
<SEO title="" />
<Helmet>
<link rel="canonical" href="https://catnose99.com/blog" />
<link rel="canonical" href="https://catnose99.com" />
</Helmet>
<HomeJsonLd />
<CategoryMenu location={location} />
Expand Down
2 changes: 1 addition & 1 deletion src/templates/post.js
Expand Up @@ -114,7 +114,7 @@ class BlogPostTemplate extends React.Component {
<Helmet>
<link
rel="canonical"
href={`https://catnose99.com/blog${this.props.location.pathname}`}
href={`https://catnose99.com${this.props.location.pathname}`}
/>
</Helmet>
<PostJsonLd
Expand Down

1 comment on commit 1609584

@vercel
Copy link

@vercel vercel bot commented on 1609584 Mar 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.