7 |

8 |
Hi, I'm catnose
9 |
10 | Designer, developer, maker, dog & cat lover. Currently working on{' '}
11 | zenn.dev with{' '}
12 | Classmethod. Follow{' '}
13 |
14 | @catnose99
15 |
16 | {' '}
17 | for daily updates.
18 |
19 |
20 | );
21 | };
22 |
--------------------------------------------------------------------------------
/.github/workflows/deployment.yml:
--------------------------------------------------------------------------------
1 | # 👏 Thanks: https://zenn.dev/nikaera/articles/vercel-github-actions
2 |
3 | # catnose.me/timelineに移行したのでactionsを停止
4 |
5 | # name: deploy on vercel
6 |
7 | # on:
8 | # push:
9 | # branches:
10 | # - main
11 | # schedule:
12 | # - cron: '0 2 * * *'
13 | # jobs:
14 | # deploy:
15 | # runs-on: ubuntu-latest
16 | # steps:
17 | # - uses: actions/checkout@v2
18 | # with:
19 | # ref: ${{ github.event.inputs.ref }}
20 | # - uses: actions/setup-node@v2
21 | # with:
22 | # node-version: '14'
23 | # - uses: amondnet/vercel-action@v20
24 | # with:
25 | # vercel-token: ${{ secrets.VERCEL_TOKEN }}
26 | # vercel-args: '--prod'
27 | # vercel-org-id: ${{ secrets.ORG_ID}}
28 | # vercel-project-id: ${{ secrets.PROJECT_ID}}
29 | # working-directory: ./
30 |
--------------------------------------------------------------------------------
/src/components/TwitterIcon.tsx:
--------------------------------------------------------------------------------
1 | export const TwitterIcon: React.VFC<{ width: number; height: number }> = ({
2 | width,
3 | height,
4 | }) => (
5 |