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

28 lines
937 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 (
2023-08-24 11:10:04 +03:00
<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'>
2023-07-28 00:10:26 +03:00
<Link to='/manuals' tabIndex={-1}>Справка</Link> <br/>
2023-08-24 11:10:04 +03:00
<Link to='/library?filter=common' tabIndex={-1}>Библиотека</Link> <br/>
2023-07-15 17:46:19 +03:00
</div>
2023-08-24 11:10:04 +03:00
<div className=''>
<a href={urls.concept} tabIndex={-1} className='underline'>Центр Концепт</a>
<p className='mt-0.5 text-center'>© 2023 ЦИВТ КОНЦЕПТ</p>
2023-07-15 17:46:19 +03:00
</div>
2023-08-24 11:10:04 +03:00
<div className='flex flex-col underline'>
<a href={urls.exteor64} tabIndex={-1}>Экстеор</a>
2023-07-15 17:46:19 +03:00
</div>
2023-08-24 11:10:04 +03:00
2023-07-15 17:46:19 +03:00
</div>
</footer >
);
}
export default Footer;