ConceptPortal-public/rsconcept/frontend/src/components/Footer.tsx
2023-08-25 00:33:16 +03:00

28 lines
949 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;