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
+1 -1
View File
@@ -68,7 +68,7 @@ export default function AboutPage() {
</ul> </ul>
</section> </section>
<AccentLink link="/cv.pdf" label="Download CV (PDF)" /> <AccentLink link="/Angel_Mankel_Resume_2026.pdf" label="Download CV (PDF)" download />
{/* Social Links */} {/* Social Links */}
<nav aria-label="Contact" className="flex gap-5 text-neutral-300"> <nav aria-label="Contact" className="flex gap-5 text-neutral-300">
+2 -2
View File
@@ -1,9 +1,9 @@
import { IconArrowNarrowRight } from '@tabler/icons-react'; import { IconArrowNarrowRight } from '@tabler/icons-react';
import { colors } from '@/constants'; 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 ( 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> <p style={{ color: colors.accent }}>{label}</p>
<IconArrowNarrowRight color={colors.accent} /> <IconArrowNarrowRight color={colors.accent} />
</a> </a>
Binary file not shown.