ConceptPortal-public/rsconcept/frontend/src/app/Footer.tsx

28 lines
848 B
TypeScript
Raw Normal View History

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