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
24 changes: 24 additions & 0 deletions src/app/aboutus/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from "react";
import { FaqItem, HowToUseItem } from "../how-to-use/HowToUseItem";

const Blue: React.FC<{ children: string }> = ({ children }) => {
return <span className="text-tertiary">{children}</span>;
};

const AboutUs: React.FC = () => {
return (
<>
<HowToUseItem title="About us">
私たち ut.code();
は、2019年度に発足した東京大学のプログラミングサークルです。主にWeb関連の技術を用い、私たちの生活を彩るプログラムを開発することを目標としています。
<br />
<a href="https://line.me/R/ti/p/%40nlr3843e">LINE add friend</a>
<br />
<a href="https://twitter.com/utokyo_code">X(旧Twitter)</a>
<br />
<a href="https://utcode.net">Webサイト</a>
</HowToUseItem>
</>
);
};
export default AboutUs;
2 changes: 1 addition & 1 deletion src/app/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Footer() {
免責事項
</Link>
<Link
href="#"
href="/aboutus"
className="hover:bg-surface-variant hover:text-white px-2 py-1 rounded transition duration-200"
>
About us
Expand Down
Loading