feat: update layout components, fix AccentLink styles, add Tooltip and Cursor components

This commit is contained in:
2026-05-28 11:32:43 -07:00
parent 6882b77629
commit 5c9891ecc5
7 changed files with 66 additions and 6 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { IconArrowNarrowRight } from '@tabler/icons-react';
import { colors } from '@/constants/colors';
import { colors } from '@/constants';
export default function AccentLink({ link, label }: { link: string, label: string }) {
return (
<a href={link} className='flex gap-1 items-center'>
<a href={link} className='flex gap-1 items-center hover:translate-x-2 hover:scale-110 transition-transform duration-200 w-fit'>
<p style={{ color: colors.accent }}>{label}</p>
<IconArrowNarrowRight color={colors.accent} />
</a>