import React from 'react'; const Credits: React.FC = () => (

Credits

Icons

This project utilizes the following icon resources:

Fonts

The fonts used in this project are provided by:

); const CreditLink = ({ href, label }: { href: string; label: string }) => ( {label} ); export default Credits;