feat: added resume

This commit is contained in:
2026-05-28 17:50:49 -07:00
parent 8b6393795e
commit 15b0ea1818
3 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { IconArrowNarrowRight } from '@tabler/icons-react';
import { colors } from '@/constants';
export default function AccentLink({ link, label }: { link: string, label: string }) {
export default function AccentLink({ link, label, download }: { link: string, label: string, download?: boolean }) {
return (
<a href={link} className='flex gap-1 items-center hover:translate-x-2 hover:scale-110 transition-transform duration-200 w-fit'>
<a href={link} download={download} 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>