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

27 lines
967 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',
2025-04-13 19:05:47 +03:00
'text-xs sm:text-sm select-none whitespace-nowrap text-muted-foreground bg-background'
2024-06-07 20:17:03 +03:00
)}
>
2025-03-09 21:57:21 +03:00
<nav className='flex gap-3' aria-label='Вторичная навигация'>
2025-06-18 09:25:37 +03:00
<TextURL text='Библиотека' href='/library' color='hover:text-foreground' />
<TextURL text='Справка' href='/manuals' color='hover:text-foreground' />
<TextURL text='Центр Концепт' href={external_urls.concept} color='hover:text-foreground' />
<TextURL text='Экстеор' href='/manuals?topic=exteor' color='hover:text-foreground' />
2025-03-09 21:57:21 +03:00
</nav>
2025-03-28 18:39:21 +03:00
<p>© 2025 ЦИВТ КОНЦЕПТ</p>
2024-06-07 20:17:03 +03:00
</footer>
);
}