feat: added resume
This commit is contained in:
+1
-1
@@ -68,7 +68,7 @@ export default function AboutPage() {
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<AccentLink link="/cv.pdf" label="Download CV (PDF)" />
|
||||
<AccentLink link="/Angel_Mankel_Resume_2026.pdf" label="Download CV (PDF)" download />
|
||||
|
||||
{/* Social Links */}
|
||||
<nav aria-label="Contact" className="flex gap-5 text-neutral-300">
|
||||
|
||||
@@ -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>
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user