2023-12-15 17:34:50 +03:00
|
|
|
|
import clsx from 'clsx';
|
|
|
|
|
|
2025-02-07 10:54:47 +03:00
|
|
|
|
import { TextURL } from '@/components/ui/Control';
|
2024-04-01 21:45:10 +03:00
|
|
|
|
import { external_urls } from '@/utils/constants';
|
2023-12-15 17:34:50 +03:00
|
|
|
|
|
2023-07-15 17:46:19 +03:00
|
|
|
|
function Footer() {
|
|
|
|
|
return (
|
2023-12-28 14:04:44 +03:00
|
|
|
|
<footer
|
|
|
|
|
className={clsx(
|
|
|
|
|
'z-navigation',
|
2024-06-05 18:07:02 +03:00
|
|
|
|
'mx-auto',
|
2024-06-06 22:01:28 +03:00
|
|
|
|
'px-3 py-2 flex flex-col items-center gap-1',
|
2024-12-17 10:53:01 +03:00
|
|
|
|
'text-xs sm:text-sm select-none whitespace-nowrap text-prim-600 bg-prim-100'
|
2023-12-28 14:04:44 +03:00
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<div className='flex gap-3'>
|
2024-12-17 10:53:01 +03:00
|
|
|
|
<TextURL text='Библиотека' href='/library' color='' />
|
|
|
|
|
<TextURL text='Справка' href='/manuals' color='' />
|
|
|
|
|
<TextURL text='Центр Концепт' href={external_urls.concept} color='' />
|
|
|
|
|
<TextURL text='Экстеор' href='/manuals?topic=exteor' color='' />
|
2023-12-28 14:04:44 +03:00
|
|
|
|
</div>
|
|
|
|
|
<div>
|
2024-12-17 10:53:01 +03:00
|
|
|
|
<p>© 2024 ЦИВТ КОНЦЕПТ</p>
|
2023-12-28 14:04:44 +03:00
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
2023-07-15 17:46:19 +03:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-28 14:04:44 +03:00
|
|
|
|
export default Footer;
|