silly personal website
1

Configure Feed

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

fix(ui): minor style tweaks and update content

Lívia (Jun 5, 2026, 7:18 PM -0300) a57eae10 204142a6

+28 -28
+1 -2
src/components/content/PostDetail.tsx
··· 84 84 } 85 85 86 86 .thread-item:hover .dot-node { 87 - background: ${theme.accent}; 88 - transform: scale(1.5); 87 + background: ${theme.textMuted}; 89 88 } 90 89 91 90 .thread-content {
+1
src/components/home/Heading.tsx
··· 27 27 width: 100%; 28 28 margin-top: ${spacing[6]}; 29 29 margin-bottom: ${spacing.section}; 30 + user-select: none; 30 31 } 31 32 32 33 .typography-stack {
+8 -8
src/content/projects.ts
··· 52 52 license: "BSD-3-Clause", 53 53 lang: ProjectLanguage.TypeScript, 54 54 }, 55 - { 56 - author: "w", 57 - name: "terracotta", 58 - description: "mill-based toolchain for crossplatform and multi-version minecraft mod development", 59 - url: "/~terracotta", 60 - license: "LGPL-3.0", 61 - lang: ProjectLanguage.Scala, 62 - }, 55 + // { 56 + // author: "w", 57 + // name: "terracotta", 58 + // description: "mill-based toolchain for crossplatform and multi-version minecraft mod development", 59 + // url: "/~terracotta", 60 + // license: "LGPL-3.0", 61 + // lang: ProjectLanguage.Scala, 62 + // }, 63 63 { 64 64 author: "w", 65 65 name: "wildcat",
+18 -18
src/content/songs.ts
··· 13 13 coverUrl?: string; 14 14 } 15 15 16 - function art(path: string, size = "512x512bb"): string { 17 - return `https://is1-ssl.mzstatic.com/image/thumb/${path}.jpg/${size}.jpg`; 16 + function art(path: string, thumbType: string = "jpg", size = "512x512bb"): string { 17 + return `https://is1-ssl.mzstatic.com/image/thumb/${path}.${thumbType}/${size}.jpg`; 18 18 } 19 19 20 20 export const songs: Song[] = [ 21 21 { 22 - title: "matryoshka", 23 - album: "heartstrings", 24 - artist: "lexycat", 25 - tag: "digicore, plunderphonics", 26 - url: "https://song.link/i/1722427758", 27 - coverUrl: art("Music211/v4/b9/7b/66/b97b6672-7c40-8b1c-fd7b-51e8866c0a6a/cover_198662567310"), 28 - releaseDate: "Released on August 18, 2024", 22 + title: "stalker", 23 + album: "to tell the truth.", 24 + artist: "bottom surgery", 25 + tag: "cybergrind, harsh noise", 26 + url: "https://bottomsurgery.bandcamp.com/track/stalker", 27 + coverUrl: art("Music211/v4/9d/c6/cd/9dc6cd1a-6c90-6a3e-eafb-966a0072db00/artwork"), 28 + releaseDate: "Released on April 10, 2026", 29 + }, 30 + { 31 + title: "sayonara birthday", 32 + album: "AN ALIEN'S PORTRAIT", 33 + artist: "Broken By The Scream", 34 + tag: "idol metal", 35 + url: "https://song.link/br/i/1810392006", 36 + coverUrl: art("Music221/v4/59/6d/6a/596d6ad6-ff0c-5987-06aa-e889e79d2489/4582168530255", "png"), 37 + releaseDate: "Released on August 22, 2018", 29 38 }, 30 39 { 31 40 title: "tile floors", ··· 35 44 url: "https://song.link/i/1681979278", 36 45 coverUrl: art("Music116/v4/53/4d/18/534d18da-75d9-5d48-2a14-17256a49c2c9/9b0f51d8-05f2-47a6-ba89-01ad8804828b"), 37 46 releaseDate: "Released on April 17, 2023", 38 - }, 39 - { 40 - title: "lose myself in you", 41 - album: "lose myself in you", 42 - artist: "coffret de bijoux", 43 - tag: "atmospheric black metal", 44 - url: "https://song.link/i/1886039227", 45 - coverUrl: art("Music221/v4/39/19/03/39190326-8671-70f7-a488-39ae4d6d74bb/5063959778586_cover"), 46 - releaseDate: "Released on March 9, 2026", 47 47 }, 48 48 ];