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

41 lines
1.6 KiB
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';
import { GithubIcon } from './Icons';
function Footer() {
return (
<footer className='z-50 px-4 pt-2 pb-4 border-t-2 clr-footer'>
<div className='flex items-stretch justify-center w-full mx-auto'>
<div className='px-4 underline whitespace-nowrap'>
<Link to='/manuals' tabIndex={-1}>Справка</Link> <br/>
<Link to='/library?filter=common' tabIndex={-1}>Библиотека КС</Link> <br/>
<a href={urls.gitrepo} className='flex'>
<GithubIcon />
<span className='ml-1'>Репозиторий</span>
</a>
</div>
<div className='px-4 underline border-gray-400 border-x dark:border-gray-300'>
<ul>
<li>
<a href={urls.concept} tabIndex={-1}>Центр Концепт</a>
</li>
<li>
<a href={urls.exteor64} tabIndex={-1}>Exteor64bit</a>
</li>
<li>
<a href={urls.exteor32} tabIndex={-1}>Exteor32bit</a>
</li>
</ul>
</div>
<div className='max-w-[28rem] px-4 text-sm'>
<p className='mt-0.5'>© 2023 ЦИВТ КОНЦЕПТ</p>
<p>Портал позволяет анализировать предметные области, формально записывать системы определений и синтезировать их с помощью математического аппарата родов структур</p>
</div>
</div>
</footer >
);
}
export default Footer;