Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

プライバシーポリシー #357

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
11 changes: 10 additions & 1 deletion src/app/(menu)/_components/menu/SideMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import { Box, styled } from '@mui/material';
import { Box, Link, styled } from '@mui/material';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

Linkコンポーネントのインポートが追加されています。この変更は、新たにプライバシーポリシーへのリンクを作成するために必要です。

- import { Box, styled } from '@mui/material';
+ import { Box, Link, styled } from '@mui/material';

import {
Home,
HomeOutlined,
Expand Down Expand Up @@ -55,6 +55,14 @@ const StyledMenu = styled('nav')`
}
`;

const StyledLink = styled(Link)`
display: flex;
justify-content: left;
align-items: center;
padding-left: 9px;
font-size: 12px;
`;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

新たにStyledLinkというスタイル付きのLinkコンポーネントが定義されています。これは、プライバシーポリシーへのリンクに適用されるスタイルを定義しています。

+ const StyledLink = styled(Link)`
+   display: flex;
+   justify-content: left;
+   align-items: center;
+   padding-left: 9px;
+   font-size: 12px;
+ `;


const Spacer = styled(Box)<{ size?: number | string }>(({ size }) => {
return {
margin: size ?? 'auto',
Expand Down Expand Up @@ -116,6 +124,7 @@ const SideMenu = () => {
userName={profile.username}
/>
)}
<StyledLink href="/privacy">{'プライバシーポリシー'}</StyledLink>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Image description CodeRabbit

サイドメニューにプライバシーポリシーへのリンクが追加されています。このリンクは、ユーザーがプライバシーポリシーを簡単に確認できるようにするためのものです。

+         <StyledLink href="/privacy">{'プライバシーポリシー'}</StyledLink>

</StyledMenu>
</Root>
);
Expand Down
104 changes: 104 additions & 0 deletions src/app/(plain)/(public)/privacy/_components/PrivacyPolicy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
'use client';

import { styled } from '@mui/material';
import LinkButton from '@/app/_components/button/LinkButton';

const Root = styled('div')`
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
max-width: 100%;
height: 100%;
`;

const Container = styled('div')`
display: flex;
flex-direction: column;
max-width: 60%;
margin: 0 auto;
`;

const Title = styled('div')`
font-weight: bold;
font-size: 2.25rem;
line-height: 2.5rem;
`;

const ButtonAlea = styled('div')`
display: flex;
justify-content: center;
align-content: center;
`;
export default function NotFound() {
return (
<Root>
<Container>
<Title>プライバシーポリシー</Title>
<div>
<h3>1. はじめに</h3>
<p>
Cuculus(以下、当サイト)は、ユーザーのプライバシーを尊重し、個人情報の保護に努めます。
</p>

<h3>2. 収集する情報</h3>
<p>当サイトでは、以下の情報を収集することがあります。</p>
<ul>
<li>
ユーザーが提供する情報(例:名前、メールアドレス、プロフィール情報)
</li>
<li>利用状況に関する情報(例:ログデータ、アクセスIPアドレス)</li>
</ul>

<h3>3. 情報の利用目的</h3>
<p>収集した情報は以下の目的で利用されます。</p>
<ul>
<li>当サイトの提供・改善</li>
<li>ユーザーサポート</li>
<li>不正行為の防止</li>
<li>新機能やサービスの案内</li>
</ul>

<h3>4. 情報の共有と開示</h3>
<p>
当サイトは、以下の場合を除き、ユーザーの個人情報を第三者に開示または共有しません。
</p>
<ul>
<li>ユーザーの同意がある場合</li>
<li>法的要求に基づく場合</li>
<li>ユーザーの権利や安全を守るため必要な場合</li>
</ul>

<h3>5. 情報の保護</h3>
<p>
当サイトは、収集した情報の安全を確保するために、適切な物理的、技術的、組織的対策を講じます。
</p>

<h3>6. ユーザーの権利</h3>
<p>ユーザーは、自己の個人情報に関して、以下の権利を有します。</p>
<ul>
<li>アクセス権</li>
<li>訂正権</li>
<li>削除権</li>
<li>処理制限の権利</li>
</ul>

<h3>7. プライバシーポリシーの変更</h3>
<p>
本ポリシーは、必要に応じて更新されることがあります。本ポリシーの内容は、ユーザーに通知することなく、変更することができるものとします。
</p>

<h3>8. お問い合わせ</h3>
<p>
本プライバシーポリシーに関するご質問や懸念がある場合は、こちらよりご連絡ください。
</p>
</div>
</Container>
<ButtonAlea>
<LinkButton href={'/'} variant={'outlined'} aria-label="トップに戻る">
トップに戻る
</LinkButton>
</ButtonAlea>
</Root>
);
}
15 changes: 15 additions & 0 deletions src/app/(plain)/(public)/privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import PrimaryColumn from '@/app/(menu)/_components/main/PrimaryColumn';
import PrivacyPolicy from '@/app/(plain)/(public)/privacy/_components/PrivacyPolicy';
import { Metadata } from 'next';

export const metadata: Metadata = {
title: 'プライバシーポリシー',
};

export default function page() {
return (
<PrimaryColumn columnName={''}>
<PrivacyPolicy />
</PrimaryColumn>
);
}
3 changes: 3 additions & 0 deletions src/app/(plain)/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@

## [@/app/(plain)/_components](./_components)
`@/app/(plain)`配下で使用するコンポーネント置き場です。

## [@/app/(plain)/(public)](./(public))
ログインしていても、してなくても良いページ
Loading