Portal/rsconcept/frontend/src/app/Footer.tsx

28 lines
848 B
TypeScript
Raw Normal View History

2024-06-07 20:17:03 +03:00
import clsx from 'clsx';
import { TextURL } from '@/components/Control';
2024-06-07 20:17:03 +03:00
import { external_urls } from '@/utils/constants';
export function Footer() {
2024-06-07 20:17:03 +03:00
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>
);
}