Update AboutModal.tsx

This commit is contained in:
Christoph Stahl 2022-01-31 23:48:29 +00:00 committed by Christoph Stahl
parent a16f3123ad
commit 8d0955e02b

View file

@ -8,14 +8,20 @@ type Props = {
export const AboutModal = ({ isOpen, handleClose }: Props) => { export const AboutModal = ({ isOpen, handleClose }: Props) => {
return ( return (
<BaseModal title="About" isOpen={isOpen} handleClose={handleClose}> <BaseModal title="About" isOpen={isOpen} handleClose={handleClose}>
<p className="text-sm text-gray-500 dark:text-gray-300"> This is a honey powered fork of an open source word guessing game -{' '}
This is an open source word guessing game -{' '}
<a <a
href="https://github.com/hannahcode/GAME" href="https://git.k-fortytwo.de/christofsteel/honigle"
className="underline font-bold" className="underline font-bold"
> >
check out the code here check out the code here
</a>{' '} </a>{' '}
and{' '}
<a
href="https://github.com/hannahcode/word-guessing-game"
className="underline font-bold"
>
the original code here
</a>{' '}
</p> </p>
</BaseModal> </BaseModal>
) )