Skip to content

Commit

Permalink
✨ プライバシーポリシーを書いた
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Dec 18, 2023
1 parent fa06ae6 commit 07c46fe
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/web/src/pages/privacy.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import type { FC } from 'react';

const PrivacyPage: FC = () => (
<div>
<h1>プライバシーポリシー</h1>
<h2>収集する個人情報</h2>
<div>メールアドレスとそれに紐づく記事の未読情報などが保管されています</div>
<div>情報はSupabase上に安全に保存されています</div>
</div>
);

export default PrivacyPage;
3 changes: 3 additions & 0 deletions packages/web/src/shared/lib/$path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export const pagesPath = {
"login": {
$url: (url?: { hash?: string }) => ({ pathname: '/login' as const, hash: url?.hash })
},
"privacy": {
$url: (url?: { hash?: string }) => ({ pathname: '/privacy' as const, hash: url?.hash })
},
"signup": {
$url: (url?: { hash?: string }) => ({ pathname: '/signup' as const, hash: url?.hash })
},
Expand Down

0 comments on commit 07c46fe

Please sign in to comment.