mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
28 lines
949 B
TypeScript
28 lines
949 B
TypeScript
import { Link } from 'react-router-dom';
|
||
|
||
import { urls } from '../utils/constants';
|
||
|
||
function Footer() {
|
||
return (
|
||
<footer className='z-50 px-4 pt-2 pb-4 text-sm select-none whitespace-nowrap clr-footer'>
|
||
<div className='flex items-stretch justify-center w-full gap-4 mx-auto'>
|
||
<div className='underline'>
|
||
<Link to='/manuals' tabIndex={-1}>Справка</Link> <br/>
|
||
<Link to='/library?filter=common' tabIndex={-1}>Библиотека</Link> <br/>
|
||
|
||
</div>
|
||
<div className=''>
|
||
<a href={urls.concept} tabIndex={-1} className='underline'>Центр Концепт</a>
|
||
<p className='mt-0.5 text-center'>© 2023 ЦИВТ КОНЦЕПТ</p>
|
||
</div>
|
||
<div className='flex flex-col underline'>
|
||
<Link to='/manuals?topic=exteor' tabIndex={-1}>Экстеор</Link>
|
||
</div>
|
||
|
||
</div>
|
||
</footer >
|
||
);
|
||
}
|
||
|
||
export default Footer;
|