Settings page added

This commit is contained in:
SoumyadiptoPal
2023-10-25 10:24:55 +05:30
parent 5dbd240017
commit 4be38fcb0e
5 changed files with 222 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import PageNotFound from './PageNotFound';
import { inject } from '@vercel/analytics';
import { useMediaQuery } from './hooks';
import { useState } from 'react';
import Setting from './Setting';
inject();
@@ -27,6 +28,7 @@ export default function App() {
<Route path="/" element={<Conversation />} />
<Route path="/about" element={<About />} />
<Route path="*" element={<PageNotFound />} />
<Route path="/settings" element={<Setting />} />
</Routes>
</div>
</div>