Create new page Blog

This commit is contained in:
MaxOvs19
2023-04-27 15:13:14 +03:00
parent 37cfe0d771
commit 36bba6c5a1
13 changed files with 94 additions and 5 deletions

View File

@ -39,6 +39,7 @@ import { PassingTests } from "./pages/quiz/PassingTests";
import "./assets/global.scss";
import "./fonts/stylesheet.css";
import "bootstrap/dist/css/bootstrap.min.css";
import Blog from "./pages/Blog/Blog";
const App = () => {
return (
@ -50,7 +51,7 @@ const App = () => {
<Route exact path="/worker/:id" element={<FreeDevelopers />} />
<Route
exact
path="/tracker/:id"
path="/tracker/task/:id"
element={<TicketFullScreen />}
></Route>
<Route exact path="/auth-candidate" element={<AuthForCandidate />} />
@ -60,6 +61,8 @@ const App = () => {
element={<RegistrationForCandidate />}
/>
<Route exact path="/blog" element={<Blog />}></Route>
<Route exact path="/candidate/:id" element={<Candidate />} />
<Route exact path="/candidate/:id/form" element={<FormPage />} />
<Route path="/:userId/calendar" element={<Calendar />} />