Skip to content

Commit

Permalink
rearrange colors
Browse files Browse the repository at this point in the history
  • Loading branch information
ksentak committed Dec 26, 2023
1 parent ba99be4 commit 14df6b8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Contact.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
If you would like to connect, feel free to reach me at
<a
href='mailto:[email protected]'
class='font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary-main to-primary-secondary hover:border-b-2 border-primary-main'
class='font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary-secondary to-primary-main hover:border-b-2 border-primary-secondary'
>
[email protected]
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const currentYear = getCurrentYear();
<div>
<!-- Blue Gradient Styled Name -->
<span
class='gradient-text font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary-main to-primary-secondary'
class='gradient-text font-bold bg-clip-text text-transparent bg-gradient-to-r from-primary-secondary to-primary-main'
>
Copyright © {currentYear} Keaton Sentak
</span>
Expand Down
6 changes: 3 additions & 3 deletions src/components/Socials.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@
class='flex justify-center mt-1 mb-5 space-x-5 items-center content-center text-text-bold'
>
<a
class='unset ml-4 rounded-sm transition-[background-size] duration-150 ease-in-out bg-left-bottom bg-[length:0%_55%] hover:bg-[length:100%_55%] bg-no-repeat bg-gradient-to-r from-primary-main to-primary-secondary'
class='unset ml-4 rounded-sm transition-[background-size] duration-150 ease-in-out bg-left-bottom bg-[length:0%_55%] hover:bg-[length:100%_55%] bg-no-repeat bg-gradient-to-r from-primary-secondary to-primary-main'
href='https://github.com/ksentak'
target='_blank'
>
<i class='fa-brands fa-github' aria-hidden='true'></i>
<span>Github</span>
</a>
<a
class='unset ml-4 rounded-sm transition-[background-size] duration-150 ease-in-out bg-left-bottom bg-[length:0%_55%] hover:bg-[length:100%_55%] bg-no-repeat bg-gradient-to-r from-primary-main to-primary-secondary'
class='unset ml-4 rounded-sm transition-[background-size] duration-150 ease-in-out bg-left-bottom bg-[length:0%_55%] hover:bg-[length:100%_55%] bg-no-repeat bg-gradient-to-r from-primary-secondary to-primary-main'
href='https://www.linkedin.com/in/ksentak/'
target='_blank'
>
<i class='fa-brands fa-linkedin' aria-hidden='true'></i>
<span>LinkedIn</span>
</a>
<a
class='unset ml-4 rounded-sm transition-[background-size] duration-150 ease-in-out bg-left-bottom bg-[length:0%_55%] hover:bg-[length:100%_55%] bg-no-repeat bg-gradient-to-r from-primary-main to-primary-secondary'
class='unset ml-4 rounded-sm transition-[background-size] duration-150 ease-in-out bg-left-bottom bg-[length:0%_55%] hover:bg-[length:100%_55%] bg-no-repeat bg-gradient-to-r from-primary-secondary to-primary-main'
href='./files/keaton-sentak-resume.pdf'
target='_blank'
>
Expand Down

0 comments on commit 14df6b8

Please sign in to comment.