refactor: move to remix.run

This commit is contained in:
Andrea
2022-05-14 00:27:02 +02:00
parent 7596166533
commit 0f67414fb5
39 changed files with 26002 additions and 854 deletions

View File

@@ -0,0 +1,13 @@
export type SocialIconProps = {
href: string;
alt: string;
src: string;
};
export function SocialIcon({ href, alt, src }: SocialIconProps) {
return (
<a href={href} className={"p-2"}>
<img alt={alt} src={src} className={"max-h-[5vh] max-w-[5vw]"} />
</a>
);
}