Coffee journaling on ATProto (alpha) alpha.arabica.social
coffee
17
fork

Configure Feed

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

feat: home page opengraph tweaks

+3 -3
+1 -1
internal/handlers/feed.go
··· 61 61 62 62 // Set OG metadata for the home page 63 63 layoutData.OGTitle = "Arabica" 64 - layoutData.OGDescription = "Coffee brew tracking on the AT Protocol. Your data, your PDS, your coffee." 64 + layoutData.OGDescription = "Coffee journaling for the open social web. Track, share, and own your brews." 65 65 baseURL := h.publicBaseURL(r) 66 66 if baseURL != "" { 67 67 layoutData.OGImage = baseURL + "/og-image"
+2 -2
internal/ogcard/site.go
··· 30 30 card.DrawBoldText("arabica.social", leftPad, y, ColorDark, 48) 31 31 y += 54 + 16 32 32 33 - card.DrawText("coffee brew tracking on the AT Protocol", leftPad, y, ColorBody, 28) 33 + card.DrawText("coffee journaling for the open social web", leftPad, y, ColorBody, 28) 34 34 y += 40 + 24 35 35 36 36 // Divider 37 37 card.DrawRect(leftPad, y, leftPad+120, y+2, ColorDivider) 38 38 y += 32 39 39 40 - card.DrawText("your data, your PDS, your coffee", leftPad, y, ColorMuted, 22) 40 + card.DrawText("track, share, and own your brews", leftPad, y, ColorMuted, 22) 41 41 42 42 return card, nil 43 43 }