Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
2 changes: 1 addition & 1 deletion src/components/GlobalFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default function GlobalFooter({ className }: { className?: string }) {
to: "https://first-programming.utcode.net/",
},
{ title: "GitHub", to: "https://github.com/ut-code" },
{ title: "𝕏", to: "https://twitter.com/utokyo_code" },
{ title: "X", to: "https://twitter.com/utokyo_code" },
]}
/>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/contact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function ContactPage() {
<p>ut.code(); へのお問い合わせは、各種 SNS をご利用ください。</p>
<p className="not-prose flex gap-4">
<ActionButton to="https://twitter.com/utokyo_code">
𝕏 (旧 Twitter)
X (旧 Twitter)
</ActionButton>
<ActionButton to="https://line.me/ti/p/%40nlr3843e">
LINE
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export default function IndexPage({ data }: PageProps<Queries.IndexPageQuery>) {
{ title: "構成人数", content: "20 名程度 (アクティブ)" },
{ title: "部室", content: "駒場キャンパス学生会館 313B 教室" },
{
title: "𝕏",
title: "X",
content: "@utokyo_code",
link: "https://x.com/utokyo_code",
},
Expand Down
5 changes: 3 additions & 2 deletions src/templates/member.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import nullthrows from "nullthrows";
import Color from "color";
import clsx from "clsx";
import { FiGithub, FiGlobe } from "react-icons/fi";
import { FaXTwitter } from "react-icons/fa6";
import GlobalHeader from "../components/GlobalHeader";
import GlobalFooter from "../components/GlobalFooter";
import CommonHead from "../components/CommonHead";
Expand Down Expand Up @@ -66,9 +67,9 @@ export default function MemberPage({
target="_blank"
className={socialButtonClassName}
rel="noreferrer"
aria-label="𝕏 (旧 Twitter) を見る"
aria-label="X (旧 Twitter) を見る"
>
𝕏
<FaXTwitter />
</a>
)}
{data.mdx?.frontmatter?.website && (
Expand Down