diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-01-26 15:23:17 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-01-26 15:23:17 +0900 |
| commit | 9127d1c420420b3c80414d8222840e96e4dd3f18 (patch) | |
| tree | a804e9f7b3d22c762b1c8abc1be5ba0e0f5b93fa /vhosts/blog/nuldoc-src/pages | |
| parent | ad87bf61edab31921a3ce216225a7a33e2112746 (diff) | |
| download | nsfisis.dev-9127d1c420420b3c80414d8222840e96e4dd3f18.tar.gz nsfisis.dev-9127d1c420420b3c80414d8222840e96e4dd3f18.tar.zst nsfisis.dev-9127d1c420420b3c80414d8222840e96e4dd3f18.zip | |
feat(blog/nuldoc): add `target=_blank` and `rel=noreferrer` to external links
Diffstat (limited to 'vhosts/blog/nuldoc-src/pages')
| -rw-r--r-- | vhosts/blog/nuldoc-src/pages/AboutPage.tsx | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/vhosts/blog/nuldoc-src/pages/AboutPage.tsx b/vhosts/blog/nuldoc-src/pages/AboutPage.tsx index 0000edf5..48763821 100644 --- a/vhosts/blog/nuldoc-src/pages/AboutPage.tsx +++ b/vhosts/blog/nuldoc-src/pages/AboutPage.tsx @@ -44,12 +44,22 @@ export default function AboutPage( <h2>アカウント</h2> <ul> <li> - <a href="https://twitter.com/nsfisis"> + <a + href="https://twitter.com/nsfisis" + target="_blank" + rel="noreferrer" + > Twitter (現 𝕏): @nsfisis </a> </li> <li> - <a href="https://github.com/nsfisis">GitHub: @nsfisis</a> + <a + href="https://github.com/nsfisis" + target="_blank" + rel="noreferrer" + > + GitHub: @nsfisis + </a> </li> </ul> </section> @@ -58,7 +68,11 @@ export default function AboutPage( <ul> <li> {"2021-01~現在: "} - <a href="https://www.dgcircus.com/"> + <a + href="https://www.dgcircus.com/" + target="_blank" + rel="noreferrer" + > デジタルサーカス株式会社 </a> </li> |
