Skip to content

Commit 6e5b0db

Browse files
authored
Privacy Policy statement has been established. #66 (#67)
close #66
1 parent 115b4c1 commit 6e5b0db

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

src/1_app/ui/app/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { Main } from '@widgets/main'
55
import { Results } from '@widgets/results'
66
import { Detail } from '@widgets/detail'
77
import { Report } from '@widgets/report'
8+
import { PrivacyPolicy } from '@widgets/privacyPolicy'
89

910
const queryClient = new QueryClient()
1011

@@ -19,6 +20,7 @@ export function App() {
1920
<Route path="/search" element={<Results />} />
2021
<Route path="/place" element={<Detail />} />
2122
<Route path="/report" element={<Report />} />
23+
<Route path="/privacy" element={<PrivacyPolicy />} />
2224
</Routes>
2325
</BrowserRouter>
2426
</QueryClientProvider>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { PrivacyPolicy } from './ui/PrivacyPolicy'
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
import { Link } from "react-router-dom";
2+
3+
export function PrivacyPolicy() {
4+
return (
5+
<div className="flex flex-col items-center h-screen">
6+
<p className="text-3xl">Surcharges Privacy Policy</p>
7+
<div className="text-xl mt-5">
8+
<p>The Surcharges service including, iOS App, does not collect any user data of any kind.</p>
9+
<p>If you wish to verify this for yourself, see the source code through below links</p>
10+
</div>
11+
<div className="flex flex-col items-center text-xl underline mt-5">
12+
<Link to="https://github.com/Surcharges/Front-end">https://github.com/Surcharges/Front-end</Link>
13+
<Link to="https://github.com/Surcharges/iOS">https://github.com/Surcharges/iOS</Link>
14+
</div>
15+
</div>
16+
)
17+
}

0 commit comments

Comments
 (0)