File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { Main } from '@widgets/main'
55import { Results } from '@widgets/results'
66import { Detail } from '@widgets/detail'
77import { Report } from '@widgets/report'
8+ import { PrivacyPolicy } from '@widgets/privacyPolicy'
89
910const 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 >
Original file line number Diff line number Diff line change 1+ export { PrivacyPolicy } from './ui/PrivacyPolicy'
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments