add itch.io footer social link

This commit is contained in:
Troy 2025-02-09 14:40:16 +00:00
parent 4806fdd248
commit 37f4fa17b8
Signed by: troy
GPG key ID: DFC06C02ED3B4711
6 changed files with 31 additions and 166 deletions

View file

@ -37,7 +37,7 @@ const listFormatter = new Intl.ListFormat("en-GB", {
>
</h1>
<div
class="animate-reveal text-tertiary mt-4 flex flex-col flex-wrap items-start gap-2 opacity-0 [animation-delay:0.1s] md:flex-row"
class="animate-reveal text-tertiary mt-4 flex flex-row flex-wrap items-start gap-2 opacity-0 [animation-delay:0.1s]"
>
<div class="flex items-center gap-2">
<Icon name="mdi:calendar" />
@ -71,7 +71,7 @@ const listFormatter = new Intl.ListFormat("en-GB", {
article.data.extraAuthors ? (
<div class="flex items-center gap-2">
<Icon name="mdi:account-plus" />
<p title="Extra authors">
<p title="Collaborators">
{listFormatter.format(article.data.extraAuthors)}
</p>
</div>

View file

@ -39,6 +39,11 @@ export const SITE: Site = {
href: "mailto:hello@troylusty.com",
icon: "mdi:email",
},
{
name: "itch.io",
href: "https://troylusty.itch.io",
icon: "simple-icons:itchdotio",
},
{
name: "GitHub",
href: "https://github.com/troylusty",

View file

@ -19,7 +19,6 @@ export async function GET(context: { site: string }) {
title: SITE.TITLE,
description: SITE.DESCRIPTION,
site: context.site,
stylesheet: "/rss/styles.xsl",
items: items.map((item) => ({
title: item.data.title,
description: item.data.description,