mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 21:10:38 +03:00
28 lines
848 B
TypeScript
28 lines
848 B
TypeScript
import clsx from 'clsx';
|
||
|
||
import { TextURL } from '@/components/Control';
|
||
import { external_urls } from '@/utils/constants';
|
||
|
||
export 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>
|
||
);
|
||
}
|