Skip to content

Commit cc6be10

Browse files
authored
fix: X is not 𝕏 (#202)
1 parent ca06ed3 commit cc6be10

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.envrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
use nix

src/components/GlobalFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default function GlobalFooter({ className }: { className?: string }) {
7474
to: "https://first-programming.utcode.net/",
7575
},
7676
{ title: "GitHub", to: "https://github.com/ut-code" },
77-
{ title: "𝕏", to: "https://twitter.com/utokyo_code" },
77+
{ title: "X", to: "https://twitter.com/utokyo_code" },
7878
]}
7979
/>
8080
</div>

src/pages/contact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function ContactPage() {
3434
<p>ut.code(); へのお問い合わせは、各種 SNS をご利用ください。</p>
3535
<p className="not-prose flex gap-4">
3636
<ActionButton to="https://twitter.com/utokyo_code">
37-
𝕏 (旧 Twitter)
37+
X (旧 Twitter)
3838
</ActionButton>
3939
<ActionButton to="https://line.me/ti/p/%40nlr3843e">
4040
LINE

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export default function IndexPage({ data }: PageProps<Queries.IndexPageQuery>) {
188188
{ title: "構成人数", content: "20 名程度 (アクティブ)" },
189189
{ title: "部室", content: "駒場キャンパス学生会館 313B 教室" },
190190
{
191-
title: "𝕏",
191+
title: "X",
192192
content: "@utokyo_code",
193193
link: "https://x.com/utokyo_code",
194194
},

src/templates/member.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import nullthrows from "nullthrows";
55
import Color from "color";
66
import clsx from "clsx";
77
import { FiGithub, FiGlobe } from "react-icons/fi";
8+
import { FaXTwitter } from "react-icons/fa6";
89
import GlobalHeader from "../components/GlobalHeader";
910
import GlobalFooter from "../components/GlobalFooter";
1011
import CommonHead from "../components/CommonHead";
@@ -66,9 +67,9 @@ export default function MemberPage({
6667
target="_blank"
6768
className={socialButtonClassName}
6869
rel="noreferrer"
69-
aria-label="𝕏 (旧 Twitter) を見る"
70+
aria-label="X (旧 Twitter) を見る"
7071
>
71-
𝕏
72+
<FaXTwitter />
7273
</a>
7374
)}
7475
{data.mdx?.frontmatter?.website && (

0 commit comments

Comments
 (0)