Skip to content

Commit

Permalink
Merge pull request #77 from h-yoshikawa44/feature/76_remove-crieit-link
Browse files Browse the repository at this point in the history
Crieitリンク除去 + Twitter -> Xリンク修正
  • Loading branch information
h-yoshikawa44 authored Aug 18, 2024
2 parents d64c76a + 8c03886 commit 4ce41cc
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# CHANGELOG
h-yoshikawa44's Portfolio の大まかな機能変化記録

## 2024-08-18
### Changed
- Twitter -> X リンクに修正(#76)

### Removed
- Crieit リンク削除(#76)

## 2023-10-14
### Changed
- 改正電気通信事業法に対応して、プライバシーポリシーを更新(#74)
Expand Down
11 changes: 3 additions & 8 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ module.exports = {
href: 'https://github.com/h-yoshikawa44',
},
{
label: 'Twitter',
href: 'https://twitter.com/yoshi44_lion',
label: 'X',
href: 'https://x.com/yoshi44_lion',
},
{
label: 'Bluesky',
Expand All @@ -132,10 +132,6 @@ module.exports = {
label: 'Zenn',
href: 'https://zenn.dev/h_yoshikawa0724',
},
{
label: 'Crieit',
href: 'https://crieit.net/users/h-yoshikawa0724',
},
{
label: 'note',
href: 'https://note.com/h_yoshikawa44',
Expand All @@ -155,11 +151,10 @@ module.exports = {
blog: 'https://changeofpace.site',
wantedly: 'https://www.wantedly.com/id/h_yoshikawa44',
github: 'https://github.com/h-yoshikawa44',
twitter: 'https://twitter.com/yoshi44_lion',
x: 'https://x.com/yoshi44_lion',
bluesky: 'https://bsky.app/profile/h-yoshikawa44.bsky.social',
qiita: 'https://qiita.com/h-yoshikawa44',
zenn: 'https://zenn.dev/h_yoshikawa0724',
crieit: 'https://crieit.net/users/h-yoshikawa0724',
credly: 'https://www.credly.com/users/h-yoshikawa44',
note: 'https://note.com/h_yoshikawa44',
},
Expand Down
12 changes: 4 additions & 8 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function Home() {
<img
className={clsx(
'avatar__photo avatar__photo--xl',
styles.backgroundColorWhite
styles.backgroundColorWhite,
)}
src={useBaseUrl('img/lion-custom.svg')}
/>
Expand All @@ -94,7 +94,7 @@ function Home() {
<p>
個人ブログや各種技術活動に関するアカウントはこちら。
<br />
(※Qiita、Zenn および Crieit
(※Qiita、Zenn
に投稿している記事は、全てブログにも投稿しています)
</p>
<ul>
Expand All @@ -111,8 +111,8 @@ function Home() {
text="GitHub"
/>
<PersonalLinkItem
url={siteConfig.customFields.url.twitter}
text="Twitter"
url={siteConfig.customFields.url.x}
text="X"
/>
<PersonalLinkItem
url={siteConfig.customFields.url.bluesky}
Expand All @@ -126,10 +126,6 @@ function Home() {
url={siteConfig.customFields.url.zenn}
text="Zenn"
/>
<PersonalLinkItem
url={siteConfig.customFields.url.crieit}
text="Crieit"
/>
<PersonalLinkItem
url={siteConfig.customFields.url.note}
text="note"
Expand Down

0 comments on commit 4ce41cc

Please sign in to comment.