diff --git a/app/components/Credits.tsx b/app/components/Credits.tsx
index 5c94887..0c09174 100644
--- a/app/components/Credits.tsx
+++ b/app/components/Credits.tsx
@@ -1,24 +1,45 @@
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:
-
-
+
+
);
-const CreditLink = ({ href, label }: { href: string; label: string }) => (
- {label}
+// 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
\ No newline at end of file