2023-12-13 14:32:57 +03:00
|
|
|
|
import { urls } from '@/utils/constants';
|
2023-12-08 19:24:08 +03:00
|
|
|
|
import TextURL from './Common/TextURL';
|
2023-07-15 17:46:19 +03:00
|
|
|
|
|
|
|
|
|
function Footer() {
|
|
|
|
|
return (
|
2023-12-08 19:24:08 +03:00
|
|
|
|
<footer tabIndex={-1} className='flex flex-col items-center w-full gap-1 px-4 py-2 text-sm select-none z-navigation whitespace-nowrap'>
|
|
|
|
|
<div className='flex gap-3 text-center'>
|
|
|
|
|
<TextURL text='Библиотека' href='/library' color='clr-footer'/>
|
|
|
|
|
<TextURL text='Справка' href='/manuals' color='clr-footer'/>
|
|
|
|
|
<TextURL text='Центр Концепт' href={urls.concept} color='clr-footer'/>
|
|
|
|
|
<TextURL text='Экстеор' href='/manuals?topic=exteor' color='clr-footer'/>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className='mt-0.5 text-center clr-footer'>© 2023 ЦИВТ КОНЦЕПТ</p>
|
2023-12-05 01:22:44 +03:00
|
|
|
|
</div>
|
|
|
|
|
</footer>);
|
2023-07-15 17:46:19 +03:00
|
|
|
|
}
|
|
|
|
|
|
2023-12-08 19:24:08 +03:00
|
|
|
|
export default Footer;
|