chore: Update layout and components for GitHub and LinkedIn links

This commit is contained in:
2024-06-04 18:05:08 +02:00
parent 9b882cff51
commit 1102f366e6
4 changed files with 67 additions and 36 deletions

16
components/Icon.tsx Normal file
View File

@@ -0,0 +1,16 @@
import React from "react";
import type { SVGProps } from "react";
export function Icon(props: SVGProps<SVGSVGElement>) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="2em"
height="2em"
viewBox="0 0 24 24"
{...props}
>
<path fill="currentColor" d={props.d}></path>
</svg>
);
}