🎨 Format files, Added codeberg to links,lighter colour for linkcards
All checks were successful
Build and deploy website / build (push) Successful in 33s

This commit is contained in:
2025-02-15 14:59:32 +01:00
parent 04f279dab3
commit cb00252364
30 changed files with 151 additions and 103 deletions

View File

@ -11,7 +11,7 @@ const { title, message, url, icon, class: clazz } = Astro.props
---
<ExternalLink href={url} noStyle>
<div class:list={["card bg-neutral", clazz]}>
<div class:list={["card bg-base-300", clazz]}>
<div class="card-body p-5 flex flex-row items-center">
<PajamasIcon name={icon ?? "pajamas:link"} class="w-6 h-6" />
<div>

View File

@ -3,44 +3,50 @@ import { GIT_URL } from "astro:env/client"
import * as m from "@/paraglide/messages"
export interface MyLink {
title: string;
url: string;
message?: string;
title: string
url: string
message?: string
icon?: PajamasIcon
}
export default [
{
title: "GitHub",
url: "https://github.com/emberal",
icon: "pajamas:github"
title: "Codeberg",
url: "https://codeberg.org/martials",
message: m.forMirrors(),
icon: "pajamas:git",
},
{
title: "Gitea",
url: `${GIT_URL}/martials`,
message: m.forPersonalProjects(),
icon: "pajamas:gitea"
icon: "pajamas:gitea",
},
{
title: "GitHub",
url: "https://github.com/emberal",
icon: "pajamas:github",
},
{
title: "LinkedIn",
url: "https://www.linkedin.com/in/martin-b-2a69391a3/",
icon: "pajamas:linkedin"
icon: "pajamas:linkedin",
},
{
title: "Mastodon (Snabelen)",
title: "Mastodon (Snabelen.no)",
url: "https://snabelen.no/@Martials",
icon: "pajamas:mastodon"
icon: "pajamas:mastodon",
},
{
title: "Pixelfed",
url: "https://pixelfed.social/i/web/profile/261454857934868480"
url: "https://pixelfed.social/i/web/profile/261454857934868480",
},
{
title: "Steam",
url: "https://steamcommunity.com/id/martials/"
url: "https://steamcommunity.com/id/martials/",
},
{
title: "Trakt.tv",
url: "https://trakt.tv/users/martials"
}
] satisfies MyLink[]
url: "https://trakt.tv/users/martials",
},
] as MyLink[]