2024-06-07 20:17:03 +03:00
|
|
|
|
import clsx from 'clsx';
|
|
|
|
|
|
2025-01-28 23:23:03 +03:00
|
|
|
|
import TextURL from '@/components/ui/TextURL';
|
2024-06-07 20:17:03 +03:00
|
|
|
|
import { external_urls } from '@/utils/constants';
|
|
|
|
|
|
|
|
|
|
function Footer() {
|
|
|
|
|
return (
|
|
|
|
|
<footer
|
|
|
|
|
className={clsx(
|
|
|
|
|
'z-navigation',
|
|
|
|
|
'mx-auto',
|
|
|
|
|
'px-3 py-2 flex flex-col items-center gap-1',
|
2024-12-17 10:52:36 +03:00
|
|
|
|
'text-xs sm:text-sm select-none whitespace-nowrap text-prim-600 bg-prim-100'
|
2024-06-07 20:17:03 +03:00
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<div className='flex gap-3'>
|
2024-12-17 10:52:36 +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='' />
|
2024-06-07 20:17:03 +03:00
|
|
|
|
</div>
|
|
|
|
|
<div>
|
2024-12-17 10:52:36 +03:00
|
|
|
|
<p>© 2024 ЦИВТ КОНЦЕПТ</p>
|
2024-06-07 20:17:03 +03:00
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Footer;
|