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

27 lines
873 B
TypeScript
Raw Normal View History

2024-06-07 20:17:03 +03:00
import clsx from 'clsx';
2025-03-12 12:04:23 +03:00
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
)}
>
2025-03-09 21:57:21 +03:00
<nav className='flex gap-3' aria-label='Вторичная навигация'>
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='' />
2025-03-09 21:57:21 +03:00
</nav>
<p>© 2024 ЦИВТ КОНЦЕПТ</p>
2024-06-07 20:17:03 +03:00
</footer>
);
}