ConceptPortal-public/rsconcept/frontend/src/app/Footer.tsx
Ivan 4c9b0b28b8
Some checks are pending
Frontend CI / build (22.x) (push) Waiting to run
R: Migrating to zustand for local state management pt1
2025-01-14 21:58:16 +03:00

31 lines
866 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 clsx from 'clsx';
import { external_urls } from '@/utils/constants';
import TextURL from '../components/ui/TextURL';
function Footer() {
return (
<footer
className={clsx(
'z-navigation',
'mx-auto',
'px-3 py-2 flex flex-col items-center gap-1',
'text-xs sm:text-sm select-none whitespace-nowrap text-prim-600 bg-prim-100'
)}
>
<div className='flex gap-3'>
<TextURL text='Библиотека' href='/library' color='' />
<TextURL text='Справка' href='/manuals' color='' />
<TextURL text='Центр Концепт' href={external_urls.concept} color='' />
<TextURL text='Экстеор' href='/manuals?topic=exteor' color='' />
</div>
<div>
<p>© 2024 ЦИВТ КОНЦЕПТ</p>
</div>
</footer>
);
}
export default Footer;