copyright

This commit is contained in:
kurpfish 2021-08-17 13:05:13 +03:00
parent 1f7af46032
commit 251a87bd85
5 changed files with 2 additions and 8 deletions

View File

@ -17,6 +17,7 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div>&nbsp 2021 © Outstaffing</div>
</body>
</html>

View File

@ -23,7 +23,7 @@ const App = () => {
<Route path='/auth' exact>
<AuthPageForPartners />
</Route>
<ProtectedRoute path='/' exact component={HomePage} />
<ProtectedRoute exact path='/' component={HomePage} />
<ProtectedRoute exact path='/candidate/:id' component={CandidatePage} />
<ProtectedRoute path='/calendar' component={CalendarPage} />
<ProtectedRoute exact path='/candidate/:id/form' component={FormPage} />

View File

@ -164,9 +164,6 @@ const AuthForDevelopers = () => {
<span>
Подберем и документально оформим IT-специалистов, после чего передадим исполнителей под ваше руководство.
Вы получаете полное управление над сотрудниками, имея возможность контролировать и заменять IT штат.{' '}
<br></br>
<br></br>
2021 © Outstaffing
</span>
</div>
</div>

View File

@ -155,9 +155,6 @@ const AuthForPartners = () => {
<span>
Подберем и документально оформим IT-специалистов, после чего передадим исполнителей под ваше руководство.
Вы получаете полное управление над сотрудниками, имея возможность контролировать и заменять IT штат.{' '}
<br></br>
<br></br>
2021 © Outstaffing
</span>
</div>
</div>

View File

@ -23,7 +23,6 @@ const handlePositionClick = ({dispatch, positionId, isSelected, onSelect}) => {
}
);
}
};
const OutstaffingBlock = ({ dataTags = [], selected, img, header, positionId, isSelected, onSelect }) => {