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

27 lines
883 B
TypeScript
Raw Normal View History

import clsx from 'clsx';
2025-03-12 12:04:50 +03:00
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',
2025-04-13 19:06:38 +03:00
'text-xs sm:text-sm select-none whitespace-nowrap text-muted-foreground bg-background'
2023-12-28 14:04:44 +03:00
)}
>
2025-03-09 21:59:21 +03:00
<nav className='flex gap-3' aria-label='Вторичная навигация'>
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='' />
2025-03-09 21:59:21 +03:00
</nav>
2025-03-28 18:40:28 +03:00
<p>© 2025 ЦИВТ КОНЦЕПТ</p>
2023-12-28 14:04:44 +03:00
</footer>
);
2023-07-15 17:46:19 +03:00
}