-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
47 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,96 +1,47 @@ | ||
"use client"; | ||
|
||
import { ArrowBack } from "@mui/icons-material"; | ||
import { Box, IconButton, Typography } from "@mui/material"; | ||
import { useRouter } from "next/navigation"; | ||
import Header from "~/components/Header"; | ||
import TopNavigation from "~/components/common/TopNavigation"; | ||
|
||
export default function FAQ() { | ||
const router = useRouter(); | ||
|
||
return ( | ||
<Box | ||
sx={{ | ||
padding: "20px", | ||
display: "flex", | ||
flexDirection: "column", | ||
position: "absolute", | ||
top: "56px", | ||
bottom: 0, | ||
left: 0, | ||
right: 0, | ||
overflowY: "auto", | ||
}} | ||
> | ||
<> | ||
<Header title="よくある質問/FAQ" /> | ||
<IconButton | ||
sx={{ position: "absolute", top: "20px", left: "20px" }} | ||
onClick={() => router.back()} | ||
> | ||
<ArrowBack /> | ||
</IconButton> | ||
|
||
<Box | ||
sx={{ | ||
width: "100%", | ||
maxWidth: "600px", | ||
padding: "30px", | ||
textAlign: "left", | ||
}} | ||
> | ||
<Typography | ||
variant="h5" | ||
component="h1" | ||
gutterBottom | ||
sx={{ fontWeight: "bold", mb: "24px", textAlign: "center" }} | ||
> | ||
よくある質問 | ||
</Typography> | ||
|
||
<Typography | ||
variant="body1" | ||
paragraph | ||
sx={{ lineHeight: 1.8, mb: "16px" }} | ||
> | ||
<strong>Q: 東大生以外も利用できますか?</strong> | ||
<br /> | ||
A: | ||
本サービスは東大生のみを対象としています。それゆえ、ECCSアカウントによるログインが必須です。他のGoogleアカウントではログインできません。 | ||
</Typography> | ||
|
||
<Typography | ||
variant="body1" | ||
paragraph | ||
sx={{ lineHeight: 1.8, mb: "16px" }} | ||
> | ||
<strong>Q: 授業登録機能はすべての学部に対応していますか?</strong> | ||
<br /> | ||
A: | ||
本サービスの授業登録機能は前期教養学部のみに対応しており、今のところ後期学部には対応しておりません。 | ||
</Typography> | ||
|
||
<Typography | ||
variant="body1" | ||
paragraph | ||
sx={{ lineHeight: 1.8, mb: "16px" }} | ||
> | ||
<strong>Q: 収集された個人情報はどのように利用されますか?</strong> | ||
<br /> | ||
A: | ||
収集した個人情報は、サインインおよびサービス提供の目的にのみ使用され、他の目的には使用されません。 | ||
</Typography> | ||
|
||
<Typography | ||
variant="body1" | ||
paragraph | ||
sx={{ lineHeight: 1.8, mb: "16px" }} | ||
> | ||
<strong>Q: 東大公式のアプリですか?</strong> | ||
<br /> | ||
A: | ||
本サービスはut.code();によって運営されており、東京大学は運営に関与しておりません | ||
</Typography> | ||
</Box> | ||
</Box> | ||
<div className="absolute top-14 right-0 bottom-0 left-0 flex flex-column overflow-y-auto sm:top-16"> | ||
<div className="flex flex-col p-2"> | ||
<TopNavigation title="よくある質問" /> | ||
<div className="w-full p-8 text-left"> | ||
<p className="mb-4 leading-7"> | ||
{/* TODO: この辺の構造を直す */} | ||
<strong>Q: 東大生以外も利用できますか?</strong> | ||
<br /> | ||
A: | ||
本サービスは東大生のみを対象としています。それゆえ、ECCSアカウントによるログインが必須です。他のGoogleアカウントではログインできません。 | ||
</p> | ||
|
||
<p className="mb-4 leading-7"> | ||
<strong>Q: 授業登録機能はすべての学部に対応していますか?</strong> | ||
<br /> | ||
A: | ||
本サービスの授業登録機能は前期教養学部のみに対応しており、今のところ後期学部には対応しておりません。 | ||
</p> | ||
|
||
<p className="mb-4 leading-7"> | ||
<strong>Q: 収集された個人情報はどのように利用されますか?</strong> | ||
<br /> | ||
A: | ||
収集した個人情報は、サインインおよびサービス提供の目的にのみ使用され、他の目的には使用されません。 | ||
</p> | ||
|
||
<p className="mb-4 leading-7"> | ||
<strong>Q: 東大公式のアプリですか?</strong> | ||
<br /> | ||
A: | ||
本サービスはut.code();によって運営されており、東京大学は運営に関与しておりません | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters