Skip to content

Commit

Permalink
add colors to icons
Browse files Browse the repository at this point in the history
  • Loading branch information
kharann committed Nov 20, 2023
1 parent 8798899 commit e7c4cca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions web/src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
import { Icon } from 'astro-icon'
import Link from './Link.astro';
const iconLinks = [
{
Expand All @@ -23,15 +24,15 @@ const iconLinks = [
const year = new Date().getFullYear()
---

<footer class="mt-16 w-full">
<footer class="mt-8 w-full">
<div class="m-auto flex h-full w-full max-w-4xl flex-col items-center">
<div class="grid w-max grid-cols-3 gap-5">
{
iconLinks.map((iconLink) => (
<a href={iconLink.link}>
<Link href={iconLink.link}>
<Icon name={iconLink.icon} width="24" height="24" />
<span class="sr-only">{iconLink.text}</span>
</a>
</Link>
))
}
</div>
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const posts = allPosts.filter((post) => !post.frontmatter.draft)
tinkering around with some code instead. <br><br>

Since then, I've built multiple web applications, managed software teams,
and designed scalable software architectures, all while juggling volunteering, work, and university.111111
and designed scalable software architectures, all while juggling volunteering, work, and university.

Fast forward to today, I've just finished my Master's degree in Informatics from NTNU and moved to Oslo. I currently work at
<Link aria-label="Link to liflig" href="https://www.capraconsulting.no/dette-kan-vi/liflig">Liflig</Link> as a full-stack developer with a passion for web applications. In my spare time, you might find me playing
Expand Down

0 comments on commit e7c4cca

Please sign in to comment.