The source code for my personal website
0

Configure Feed

Select the types of activity you want to include in your feed.

refactor: update git link to point towards gitdab

hanna (Jan 7, 2026, 11:16 AM EST) 7e924609 2f968668

+7 -7
+1
src/images/git-branch.svg
··· 1 + <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-git-branch-icon lucide-git-branch"><line x1="6" x2="6" y1="3" y2="15"/><circle cx="18" cy="6" r="3"/><circle cx="6" cy="18" r="3"/><path d="M18 9a9 9 0 0 1-9 9"/></svg>
-1
src/images/gitlab.svg
··· 1 - <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-gitlab-icon lucide-gitlab"><path d="m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z"/></svg>
+6 -6
src/pages/index.astro
··· 6 6 import EmojiIcon from '../images/emoji.svg'; 7 7 import EnvelopeIcon from '../images/envelope.svg'; 8 8 import FileUserIcon from '../images/file-user.svg'; 9 + import UserLockIcon from '../images/user-lock.svg'; 10 + import GitBranchIcon from '../images/git-branch.svg'; 9 11 import GamesIcon from '../images/games.svg'; 10 - import GitLabIcon from '../images/gitlab.svg'; 11 12 import HeartIcon from '../images/heart.svg'; 12 - import UserLockIcon from '../images/user-lock.svg'; 13 13 14 14 const links = [ 15 15 { 16 - name: 'GitLab', 17 - icon: GitLabIcon, 18 - url: 'https://gitlab.com/hqnna', 16 + name: 'GitDab', 17 + icon: GitBranchIcon, 18 + url: 'https://gitdab.com/hanna', 19 19 }, 20 20 { 21 21 name: 'Emojis', ··· 46 46 name: 'Donate', 47 47 icon: HeartIcon, 48 48 url: 'https://liberapay.com/hqnna', 49 - } 49 + }, 50 50 ]; 51 51 --- 52 52