feat: added my public keys to a keys.json file in the root of the website

This commit is contained in:
2023-06-29 22:57:27 +02:00
parent 77482ba074
commit 8a2f19e8a9
14 changed files with 179 additions and 4 deletions

View File

@@ -6,7 +6,6 @@ import { ICONS } from "@/constants";
import { Dictionary } from "@/types";
import { getContactHref, getIcon } from "@/utils";
type Props = {
contacts: Dictionary<string>;
};
@@ -26,8 +25,13 @@ const Contacts: React.FC<Props> = ({ contacts }: Props) => (
<Icon name={name} icon={getIcon(name)} />
</a>
</li>
) : null,
) : null
)}
<li className={styles.item} key="keys">
<a className={styles.link} href="/keys.json" rel="noopener noreferrer" target="_blank">
<Icon name="keys" icon={getIcon("keys")} />
</a>
</li>
</ul>
</div>
);