mirror of
https://github.com/FranP-code/Open-Telegram-to-Notion-Website.git
synced 2025-10-13 00:42:53 +00:00
About, privacy policy and terms of use pages added
This commit is contained in:
@@ -1,16 +1,24 @@
|
||||
import React from 'react'
|
||||
import {Route} from 'wouter'
|
||||
|
||||
//Components
|
||||
import Header from './components/Header/Header'
|
||||
|
||||
//Pages
|
||||
import About from './Pages/About/About'
|
||||
import Auth from './Pages/Auth/Auth'
|
||||
import PrivacyPolicy from './Pages/PrivacyPolicy/PrivacyPolicy'
|
||||
import TermsOfUse from './Pages/TermsOfUse/TermsOfUse'
|
||||
import Index from './Pages/Index/Index'
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<>
|
||||
<Header />
|
||||
<Route path="/about" children={<About/>} />
|
||||
<Route path="/auth" children={<Auth/>} />
|
||||
<Route path="/privacy-policy" children={<PrivacyPolicy/>} />
|
||||
<Route path="/terms-of-use" children={<TermsOfUse/>} />
|
||||
<Route path="/" children={<Index/>} />
|
||||
</>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user