From d3002611e599189a655355bd1e8e9150141ac842 Mon Sep 17 00:00:00 2001 From: sageTheDM Date: Fri, 11 Oct 2024 09:51:23 +0200 Subject: [PATCH] credit comments --- app/components/Credits.tsx | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) 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