ConceptPortal-public/rsconcept/frontend/src/components/Footer.tsx

24 lines
896 B
TypeScript
Raw Normal View History

2023-07-15 17:46:19 +03:00
import { Link } from 'react-router-dom';
2023-07-25 20:27:29 +03:00
2023-07-20 17:11:03 +03:00
import { urls } from '../utils/constants';
2023-07-15 17:46:19 +03:00
function Footer() {
return (
<footer className='px-4 py-2 text-sm select-none z-navigation whitespace-nowrap clr-footer'>
<div className='justify-center w-full mx-auto'>
<div className='mb-2 text-center'>
<Link className='mx-2 hover:underline' to='/library' tabIndex={-1}>Библиотека</Link>
<Link className='mx-2 hover:underline' to='/manuals' tabIndex={-1}>Справка</Link>
<Link className='mx-2 hover:underline' to={urls.concept} tabIndex={-1}>Центр Концепт</Link>
<Link className='mx-2 hover:underline' to='/manuals?topic=exteor' tabIndex={-1}>Экстеор</Link>
</div>
<div>
<p className='mt-0.5 text-center'>© 2023 ЦИВТ КОНЦЕПТ</p>
2023-07-15 17:46:19 +03:00
</div>
</div>
</footer>);
2023-07-15 17:46:19 +03:00
}
export default Footer;