Skip to content

Commit

Permalink
Merge pull request #107 from cybozu/fix/link_recruit
Browse files Browse the repository at this point in the history
fix: add noreferrer
  • Loading branch information
nakajmg authored Aug 17, 2023
2 parents 13dfcc6 + e3bcfad commit 4444fab
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,37 @@ export const Footer: FC = () => {
<div className="content">
<ul>
<li>
<a href="https://cybozu.co.jp/" target="_blank">サイボウズ 企業情報</a>
<a href="https://cybozu.co.jp/" target="_blank" rel="noreferrer">
サイボウズ 企業情報
</a>
</li>
<li>
<a href="https://www.cybozu.com/jp/" target="_blank">cybozu.com</a>
<a
href="https://www.cybozu.com/jp/"
target="_blank"
rel="noreferrer"
>
cybozu.com
</a>
</li>
<li>
<a href="https://blog.cybozu.io/" target="_blank">
<a href="https://blog.cybozu.io/" target="_blank" rel="noreferrer">
サイボウズエンジニアのブログ Cybozu Inside Out
</a>
</li>
<li>
<a href="https://tech.cybozu.io/" target="_blank">Cybozu Tech</a>
<a href="https://tech.cybozu.io/" target="_blank" rel="noreferrer">
Cybozu Tech
</a>
</li>
<li>
<a href="https://cybozu.co.jp/recruit/" target="_blank">採用情報</a>
<a
href="https://cybozu.co.jp/recruit/"
target="_blank"
rel="noreferrer"
>
採用情報
</a>
</li>
</ul>
<small>Copyright &copy; Cybozu, Inc.</small>
Expand Down

0 comments on commit 4444fab

Please sign in to comment.