File tree Expand file tree Collapse file tree 3 files changed +21
-1
lines changed
Expand file tree Collapse file tree 3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import { DashBoard } from '@widgets/dashboard'
1010import { Protected } from '@features/protected'
1111import { AuthContextProvider } from '@shared/model'
1212import { PrivacyPolicy } from '@widgets/privacyPolicy'
13+ import { Support } from '@widgets/support'
1314
1415const queryClient = new QueryClient ( )
1516
@@ -26,12 +27,13 @@ export function App() {
2627 < Route path = "/place" element = { < Detail /> } />
2728 < Route path = "/report" element = { < Report /> } />
2829 < Route path = "/login" element = { < Login /> } />
30+ < Route path = "/privacy" element = { < PrivacyPolicy /> } />
31+ < Route path = "/support" element = { < Support /> } />
2932 < Route path = '/admin' element = {
3033 < Protected >
3134 < DashBoard />
3235 </ Protected >
3336 } />
34- < Route path = "/privacy" element = { < PrivacyPolicy /> } />
3537 </ Routes >
3638 </ BrowserRouter >
3739 </ QueryClientProvider >
Original file line number Diff line number Diff line change 1+ export { Support } from "./ui/Support"
Original file line number Diff line number Diff line change 1+ import { Footer } from "@shared/ui"
2+ import { Link } from "react-router-dom"
3+
4+ export function Support ( ) {
5+ return (
6+ < div className = "flex flex-col items-center h-screen m-10" >
7+ < p className = "text-3xl font-bold" > Surcharges</ p >
8+ < p className = "mt-10" > We are here for hearing from you.</ p >
9+ < div className = "flex" >
10+ < p className = "mr-1" > Any kind of suggestion or inquery, click</ p >
11+ < Link to = "mailto:surcharges@bonsung.me" className = "underline" > Here</ Link >
12+ < p className = "ml-1" > to mail us!</ p >
13+ </ div >
14+ < Footer />
15+ </ div >
16+ )
17+ }
You can’t perform that action at this time.
0 commit comments