-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from itizaworld/feature/implement-terms-and-po…
…licy-page 利用規約とプライバシーポリシーを実装した
- Loading branch information
Showing
7 changed files
with
91 additions
and
9 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 +1,2 @@ | ||
NEXT_PUBLIC_FRONT_URL=http://localhost:3000 | ||
NEXT_PUBLIC_SERVER_URL=http://localhost:8000 |
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
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
const frontUrl = process.env.NEXT_PUBLIC_FRONT_URL; | ||
const serverUrl = process.env.NEXT_PUBLIC_SERVER_URL; | ||
export const URLS = { | ||
TOP: '/', | ||
NOTE_NEW: '/notes/new', | ||
TERM: `${frontUrl}/terms`, | ||
POLICY: `${frontUrl}/policy`, | ||
LOGIN_TO_BACKEND: `${serverUrl}/auth/google`, | ||
}; |
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,30 @@ | ||
// app/page.tsx | ||
import { Card } from '@nextui-org/card'; | ||
|
||
export default async function Page() { | ||
return ( | ||
<div className="max-w-[600px] mx-auto justify-center gap-[16px] py-[24px] p-[16px]"> | ||
<Card className="w-[100%] md:p-[24px] p-[16px] flex flex-col" shadow="sm"> | ||
<p className="text-2xl mb-[40px]">プライバシーポリシー</p> | ||
<p className="mb-[16px]"> | ||
本サービスの利用に際してユーザーから収集される情報の取り扱いについて説明します。 | ||
<br /> | ||
ユーザーが本サービスを利用することで、以下の情報の収集・利用についてのポリシーを理解し、同意したものとみなします。 | ||
</p> | ||
<p className="mb-[16px]">本サービスの一部はアカウントを作成せずに利用可能です。</p> | ||
<p className="mb-[16px]"> | ||
ただし、アカウント作成を行う場合、ユーザーから一定の個人情報を収集する必要があります。 | ||
<br /> | ||
収集する情報にはユーザー名とメールアドレスが含まれます。 | ||
<br /> | ||
ユーザー名は公開情報として扱われますが、実名、仮名のいずれも選択することができます。 | ||
<br /> | ||
また、ユーザーは複数のアカウントを持つことが許可されています。 | ||
</p> | ||
<p className="mb-[16px]"> | ||
メールアドレスなどの連絡先情報は、ユーザーアカウントの認証、安全性の確保、およびスパムや詐欺行為からの保護を目的として利用されます。 | ||
</p> | ||
</Card> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// app/page.tsx | ||
import { Card } from '@nextui-org/card'; | ||
import { Link } from '@nextui-org/link'; | ||
import { URLS } from '../_constants/urls'; | ||
|
||
export default async function Page() { | ||
return ( | ||
<div className="min-h-[500px] max-w-[600px] mx-auto justify-center gap-[16px] py-[24px] p-[16px]"> | ||
<Card className="w-[100%] md:p-[24px] p-[16px] flex flex-col" shadow="sm"> | ||
<p className="text-2xl">利用規約</p> | ||
<h3 className="mt-[24px] mb-[16px]">第1条(はじめに)</h3> | ||
<p> | ||
「みんなの日報」運営チーム(以下「運営チーム」といいます。)が提供する「みんなの日報」は、ユーザーに心から満足していただけるサービスを目指しています。以下の利用規約(以下「本規約」といいます。)にご同意の上での利用をお願いします。 | ||
<br /> | ||
本規約は、運営チームとユーザー間の本サービスの利用条件を定めるものです。運営チームは、予告なく本規約を改定する権利を有します。改定された規約は本サービスに掲載することで発効します。 | ||
</p> | ||
<h3 className="mt-[24px] mb-[16px]">第2条(本サービス上のコンテンツ)</h3> | ||
<p> | ||
ユーザーは、法令や規則を遵守するとともに、自身の提供するコンテンツに全責任を負います。他者に対して差し支えない内容のみを投稿してください。 | ||
<br /> | ||
本サービスを通じて取得または公開されるコンテンツに対する利用や依存は、ユーザーの責任とします。運営チームはコンテンツの完全性、真実性、正確性、または信頼性については一切の保証をしません。 | ||
<br /> | ||
ユーザーは、不適切なコンテンツに接するリスクを理解し、承知したものとします。運営チームは利用規約違反のコンテンツを削除する権利を保有します。 | ||
</p> | ||
<h3 className="mt-[24px] mb-[16px]">第3条(本サービスの利用)</h3> | ||
<p> | ||
本サービスは、運営チームの判断により変更されることがあります。 | ||
<br /> | ||
また、サービスの一時停止や終了、利用制限の設定も予告なく行われる場合があります。 | ||
</p> | ||
<h3 className="mt-[24px] mb-[16px]">第4条(本規約の終了)</h3> | ||
<p> | ||
ユーザーは、アカウントの削除により本規約を終了できます。 | ||
<br /> | ||
運営チームは、本規約違反やその他の理由で、ユーザーのアカウントを一時停止または削除する権利を保有します。 | ||
</p> | ||
<h3 className="mt-[24px] mb-[16px]">第5条(一般条件)</h3> | ||
<p> | ||
本規約は随時改定されることがあり、最新版は | ||
<Link href={URLS.TERM} className="text-sky-500"> | ||
{URLS.TERM} | ||
</Link> | ||
にて確認できます。 | ||
<br /> | ||
改定後の本規約は、ユーザーがサービスを継続して利用することで同意したものとみなされます。 | ||
</p> | ||
</Card> | ||
</div> | ||
); | ||
} |