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

Credits

Icons

This project utilizes the following icon resources:

Fonts

The fonts used in this project are provided by:

); // CreditLink Component for rendering individual credit links const CreditLink: React.FC<{ href: string; label: string }> = ({ href, label }) => ( {label} ); export default Credits; // also thank you Leart and Tristan without you two we would not have come this far // and a special thanks and why are you so annoying to Eslint