feat: improve links and add matrix and FA logos

This commit is contained in:
2026-03-02 04:10:40 +01:00
parent 27b3ba67b1
commit f03aae2c03
10 changed files with 74 additions and 25 deletions

View File

@@ -3,10 +3,15 @@ import type { SvgComponent } from "astro/types";
interface Props {
SvgComponent: SvgComponent;
svgSize?: number;
size?: number;
}
const { SvgComponent, svgSize = 24 } = Astro.props;
const { size = 24, SvgComponent } = Astro.props;
---
<SvgComponent height={svgSize} width={svgSize} role="presentation" />
<SvgComponent
height={size}
width={size}
fill="currentColor"
role="presentation"
/>