Skip to content

Commit

Permalink
fix contents
Browse files Browse the repository at this point in the history
  • Loading branch information
koh110 committed Jul 31, 2024
1 parent 99f2ce2 commit 8b8fa1c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
11 changes: 11 additions & 0 deletions components/pages/About/History/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ export default function History() {
<HistoryElement date="2022/07-">
<p>RPGテック合同会社に参画</p>
<p>スタートアップや新規事業の開発やアドバイザー業務</p>
<ul>
<li>
<a
href="https://amzn.to/4b2hrIQ"
target="_blank"
rel="noopener noreferrer"
>
実践Node.js入門発売
</a>
</li>
</ul>
</HistoryElement>
<HistoryElement date="2021-2022/07">
<p>CTO直下の部署に移動</p>
Expand Down
12 changes: 9 additions & 3 deletions components/pages/Work/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@ const books: AmazonLogProps[] = [
type: 'amazon',
title: '実践Node.js入門',
date: '2023/01/26',
desc: 'Node.jsの入門書です。基礎知識、環境構築、重要文法、非同期、CLIツール開発、Expressを用いたサーバーサイドの開発やフロントエンド(React)との連携などNode.jsの全体像が学べます。',
desc: [
'Node.jsの入門書です。',
'基礎知識、環境構築、重要文法、非同期、CLIツール開発、Expressを用いたサーバーサイドの開発やフロントエンド(React)との連携などNode.jsの全体像が学べます。'
].join(''),
img: '/nodejs-book.jpg',
url: `https://amzn.to/4b2hrIQ`,
dangerouslySetInnerHTML: `<a href="https://gihyo.jp/book/2023/978-4-297-12956-9" target="_blank">https://gihyo.jp/book/2023/978-4-297-12956-9</a>`
dangerouslySetInnerHTML: [
`<div><a href="https://gihyo.jp/book/2023/978-4-297-12956-9" target="_blank">https://gihyo.jp/book/2023/978-4-297-12956-9</a></div>`,
`<div style="margin-top: 1em;"><a href="https://www.hanbit.co.kr/store/books/look.php?p_code=B5038538340" target="_blank">韓国語版</a></div>`,
].join('')
},
{
type: 'amazon',
Expand All @@ -33,7 +39,7 @@ const softs: WorkProps[] = [
url: 'https://github.com/koh110/tiny-type-api',
img: npmImage,
title: 'tiny-type-api',
desc: 'モノレポの時にAPI定義をclient/serverでうまく共有する方法を模索してできたライブラリ。tRPCからzodを抜いたようなシンプルで軽量あやつが欲しかった'
desc: 'モノレポの時にAPI定義をclient/serverでうまく共有する方法を模索してできたライブラリ。tRPCからzodを抜いたようなシンプルで軽量なものが欲しかった'
},
{
url: 'https://mzm.dev',
Expand Down

0 comments on commit 8b8fa1c

Please sign in to comment.