Skip to content

Commit

Permalink
Update footer
Browse files Browse the repository at this point in the history
  • Loading branch information
micmalti committed Sep 29, 2024
1 parent b8583ff commit 7f08434
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 28 deletions.
Binary file added public/resume.pdf
Binary file not shown.
21 changes: 16 additions & 5 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,23 @@ import { Icon } from 'astro-icon/components'
---

<div class="flex justify-between mb-8">
<span class="text-sm flex-none">Privacy policy</span>
<!-- <span class="text-sm flex-none">Privacy policy</span> -->
<a href="#">
<span class="relative py-1 after:absolute after:bottom-0 after:left-0 after:w-full after:scale-x-0 hover:after:scale-x-100 after:transition-all after:origin-left after:h-[2px] after:bg-secondary">Privacy policy</span>
</a>
<span class="text-sm flex-grow text-center">© 2024 Michael Gauci. All rights reserved.</span>
<div class="grid grid-cols-4 gap-5">
<Icon name="cv" class="text-secondary size-5"/>
<Icon name="github" class="text-secondary size-5"/>
<Icon name="linkedin" class="text-secondary size-5"/>
<Icon name="x" class="text-secondary size-5"/>
<a href="/resume.pdf" target="_blank" rel="noopener noreferrer">
<Icon name="cv" class="icon-link"/>
</a>
<a href="https://github.com/micmalti/" target="_blank" rel="noopener noreferrer">
<Icon name="github" class="icon-link"/>
</a>
<a href="https://www.linkedin.com/in/michaelgaucimt/" target="_blank" rel="noopener noreferrer">
<Icon name="linkedin" class="icon-link"/>
</a>
<a href="https://twitter.com/MichaelGauciMT" target="_blank" rel="noopener noreferrer">
<Icon name="x" class="icon-link"/>
</a>
</div>
</div>
50 changes: 41 additions & 9 deletions src/icons/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 73 additions & 13 deletions src/icons/linkedin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
@apply cursor-default;
}

a, button {
button {
@apply cursor-pointer;
}

Expand All @@ -25,4 +25,8 @@ p {

.form-field {
@apply text-secondary border border-solid border-secondary border-opacity-25 bg-transparent transition-all duration-300 focus:outline-none focus:border-opacity-100 px-3 py-2
}

.icon-link {
@apply text-secondary size-5 transition-all duration-300 hover:-translate-y-1;
}

0 comments on commit 7f08434

Please sign in to comment.