Skip to content

Commit

Permalink
feat: curriculum (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Liendo authored Mar 7, 2023
1 parent 269fb1d commit 422a4b9
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,20 @@ export default function Home() {
<p className="text-lg">{t('biography')}</p>
</div>
<div className="flex justify-end">
<button className="mt-5 min-w-max transition ease-in bg-blue-600 hover:scale-110 duration-150 focus:outline-none font-medium h-10 rounded-lg px-5 py-2 text-center">
{t('Curriculum')}
</button>
<a
title="Curriculum"
target="_blank"
rel="noreferrer"
href={
t('locale') === 'es'
? 'https://cdn.michaelliendo.com/Michael-Liendo-Curriculum-Spanish.pdf'
: 'https://cdn.michaelliendo.com/Michael-Liendo-Curriculum-English.pdf'
}
>
<button className="mt-5 transition ease-in bg-blue-600 hover:scale-110 duration-150 focus:outline-none font-medium rounded-lg px-5 py-2 text-center">
Curriculum
</button>
</a>
</div>
</Card>
);
Expand Down

0 comments on commit 422a4b9

Please sign in to comment.