-
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
4 changed files
with
177 additions
and
94 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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
'use client' | ||
import {Container, Button, AppBar, Box, SwipeableDrawer, IconButton, Tooltip, BottomNavigation,} from "@mui/material"; | ||
import React from 'react'; | ||
import {HiBuildingLibrary, HiXMark} from "react-icons/hi2"; | ||
import PrivacyPolicy from "@/components/layout/privacyPolicy"; | ||
|
||
const NavPrivacyPolicyDrawer = () => { | ||
const [open, setOpen] = React.useState(false); | ||
|
||
const toggleDrawer = (newOpen: boolean) => () => { | ||
setOpen(newOpen); | ||
}; | ||
|
||
const DrawerList = ( | ||
<> | ||
<BottomNavigation | ||
sx={{ | ||
position: "fixed", | ||
bottom: 0, left: 0, right: 0, | ||
zIndex: "128", | ||
background:"rgba(62,78,179,0.8)", | ||
backdropFilter: 'blur(4px)', | ||
}} | ||
> | ||
<Box | ||
sx={{ | ||
width: '100vw', height: 'auto', overflow: 'scrollable', my:1.5 | ||
}} | ||
> | ||
<Container maxWidth={"xl"}> | ||
<Button | ||
sx={{width:"100%"}} | ||
color="secondary" | ||
onClick={toggleDrawer(false)} | ||
aria-label="close" | ||
startIcon={<HiXMark/>} | ||
> | ||
閉じる | ||
</Button> | ||
</Container> | ||
</Box> | ||
</BottomNavigation> | ||
<Box | ||
sx={{ | ||
width: '99vw', height: 'auto', overflow: 'scrollable', mt: 10, mb: 10 | ||
}} | ||
role="presentation" | ||
onClick={toggleDrawer(false)} | ||
onKeyDown={toggleDrawer( false)} | ||
> | ||
<PrivacyPolicy/> | ||
</Box> | ||
</> | ||
); | ||
|
||
return ( | ||
<> | ||
<Tooltip title={"プライバシーポリシー"} arrow> | ||
<IconButton | ||
onClick={toggleDrawer(true)} | ||
> | ||
<HiBuildingLibrary color={"#eff0f8"}/> | ||
</IconButton> | ||
</Tooltip> | ||
<SwipeableDrawer | ||
open={open} | ||
onClose={toggleDrawer(false)} | ||
onOpen={toggleDrawer(true)} | ||
anchor={"bottom"} | ||
> | ||
{DrawerList} | ||
</SwipeableDrawer> | ||
</> | ||
); | ||
}; | ||
|
||
export default NavPrivacyPolicyDrawer; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import {Stack, Divider, Typography, Card, Container} from "@mui/material"; | ||
import WiderLogo from "@/components/svg/wider"; | ||
|
||
const PrivacyPolicy = () => { | ||
return ( | ||
<Container maxWidth={"xl"}> | ||
<Stack spacing={2}> | ||
<Typography variant={"h4"}>SPORTSDAYの個人情報取り扱い方針</Typography> | ||
<Divider/> | ||
<Typography variant={"h6"}>どのような情報を収集しますか?</Typography> | ||
<Typography>当サイトを利用すると、以下の情報が収集されることがあります。</Typography> | ||
<Card variant={"outlined"} sx={{p:2}}> | ||
<Stack spacing={1}> | ||
<Typography fontWeight={"600"}>基本的なアカウント情報</Typography> | ||
<Divider/> | ||
<Typography>当サイトを利用するためには、Microsoftアカウントの基本的な情報(名前・アイコン)を取得します。また、参加する競技やチーム・リーグ・トーナメント・得点状況といった大会進行にしたがって必要な情報は、SPORTSDAY Adminを用いて登録されます。これらの情報は他のSPORTSDAYユーザーに公開されます。</Typography> | ||
</Stack> | ||
</Card> | ||
<Card variant={"outlined"} sx={{p:2}}> | ||
<Stack spacing={1}> | ||
<Typography fontWeight={"600"}>Cookie</Typography> | ||
<Divider/> | ||
<Typography>当サイトを利用すると、お使いのブラウザのCookieを利用します。CookieはSPORTSDAYの利用に伴う情報のみが保存・利用されます。Cookieが許可されていなければ、SPORTSDAYが正常に動作しない可能性があります。</Typography> | ||
</Stack> | ||
</Card> | ||
<Card variant={"outlined"} sx={{p:2}}> | ||
<Stack spacing={1}> | ||
<Typography fontWeight={"600"}>その他のデータ</Typography> | ||
<Divider/> | ||
<Typography>アンケートや基本的な使用状況(アクセス数)は、SPORTSDAYの管理者(大会運営者)が閲覧することがあります。</Typography> | ||
</Stack> | ||
</Card> | ||
<Divider/> | ||
<Typography variant={"h6"}>情報は何に使用されますか?</Typography> | ||
<Typography>収集した情報は次のように使用されることがあります。</Typography> | ||
<Card variant={"outlined"} sx={{p:2}}> | ||
<Stack spacing={1}> | ||
<Typography fontWeight={"600"}>SPORTSDAYのコア機能の提供</Typography> | ||
<Divider/> | ||
<Typography>基本的なアカウント情報は大会実施期間に限り、他のユーザーに競技一覧や進行状況として見ることで、大会の現況を把握することができるようにするために使用されます。また、大会運営者が大会前にリーグ・トーナメント・試合時間の調整を行う際や、大会進行時に競技の得点を入力する際に、ユーザーまたはチームを識別するために最低限の情報を表示することがあります。</Typography> | ||
</Stack> | ||
</Card> | ||
<Card variant={"outlined"} sx={{p:2}}> | ||
<Stack spacing={1}> | ||
<Typography fontWeight={"600"}>ログイン状態の識別</Typography> | ||
<Divider/> | ||
<Typography>Cookieは、主にSPORTSDAYにログインしているかどうかを識別するために利用されます。</Typography> | ||
</Stack> | ||
</Card> | ||
<Card variant={"outlined"} sx={{p:2}}> | ||
<Stack spacing={1}> | ||
<Typography fontWeight={"600"}>SPORTSDAYの改善</Typography> | ||
<Divider/> | ||
<Typography>当サイトでは、一部でアクセス解析ツールであるGoogle Analyticsを使用しており、そのためにCookieを利用することがあります。アンケートの回答結果やアクセス数などの情報は、SPORTSDAYの開発者や運営者が今後のシステム改善のためだけに閲覧することがあります。</Typography> | ||
</Stack> | ||
</Card> | ||
<Divider/> | ||
<Typography variant={"h6"}>情報をどのように保護しますか?</Typography> | ||
<Typography>SPORTSDAY開発者は、ユーザーが入力・送信する際や自身の情報にアクセスする際に個人情報を安全に保つため、さまざまなセキュリティ上の対策を実施しています。アプリケーションとユーザーの間の通信はSSL/TLSによって保護されます。また、ログイン処理はOIDCを用いており、SPORTSDAY開発者はパスワードなどの情報を一切収集することができません。</Typography> | ||
<Divider/> | ||
<Typography variant={"h6"}>データの保持はどのように行われますか?</Typography> | ||
<Typography>SPORTSDAY開発者は誠意を持って次のように努めます:大会を通して収集されたアンケート結果以外のデータは、大会期間(大会当日の前後約1ヶ月)のみサーバーに保持されます。大会期間を過ぎると直ちに削除され、サーバーのストレージを完全にクリーンな状態にして安全に処理します。</Typography> | ||
<Divider/> | ||
<Typography variant={"h6"}>何らかの情報を外部に提供していますか?</Typography> | ||
<Typography>SPORTSDAY開発者は、個人を特定できるいかなる情報を外部へ提供・流出することはありません。ただし、アンケート結果から得られた評価など、実際の大会で得られたデータのうち個人の特定が不可能な情報のみをSPORTSDAYのプロモーションや発表のために利用する場合があります。</Typography> | ||
<Divider/> | ||
<Typography variant={"h6"}>プライバシーポリシーの変更について</Typography> | ||
<Typography>プライバシーポリシーの変更があった場合、このページに変更を掲載します。</Typography> | ||
<Typography>最終更新:2024年4月17日</Typography> | ||
<Stack direction={"row"} spacing={0.5}> | ||
<Typography fontWeight={"600"} color={"#99a5d6"}>(C)2024</Typography> | ||
<WiderLogo/> | ||
</Stack> | ||
</Stack> | ||
</Container> | ||
); | ||
}; | ||
|
||
export default PrivacyPolicy; |
Oops, something went wrong.