diff options
author | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-17 17:30:47 +0100 |
---|---|---|
committer | Nikita Tchayka <nikitatchayka@gmail.com> | 2023-09-17 17:30:47 +0100 |
commit | 257c43e352a75d6e56bf08afcdaa95a36f316b89 (patch) | |
tree | 10c89ad8bc225c070e68abe43289d6f0cf47a936 | |
parent | 3478dcbbd6cd0023d6152519e51f87fcbcc8501d (diff) | |
download | neohaskell.github.io-257c43e352a75d6e56bf08afcdaa95a36f316b89.tar.gz neohaskell.github.io-257c43e352a75d6e56bf08afcdaa95a36f316b89.tar.bz2 neohaskell.github.io-257c43e352a75d6e56bf08afcdaa95a36f316b89.zip |
Update disclaimer
-rw-r--r-- | src/components/Disclaimer.tsx | 12 | ||||
-rw-r--r-- | src/components/Modal.tsx | 5 |
2 files changed, 14 insertions, 3 deletions
diff --git a/src/components/Disclaimer.tsx b/src/components/Disclaimer.tsx index 5ffcc3f..d6537cf 100644 --- a/src/components/Disclaimer.tsx +++ b/src/components/Disclaimer.tsx @@ -13,8 +13,16 @@ export default function Disclaimer() { > <p> The NeoHaskell project is a work-in-progress effort in it's early - days. Mostly everything is missing. If you're curious about the - project: + days. Mostly everything is missing ( + <a + className="underline" + href="https://github.com/neohaskell/NeoHaskell/milestones" + target="_blank" + onClick={() => setDisclaimerOpen(!disclaimerOpen)} + > + click here for a status report + </a> + ). But, if you really want to know more about the project: </p> <a className="text-lightsecondary hover:underline hover:decoration-wavy underline-offset-4 py-4 block" diff --git a/src/components/Modal.tsx b/src/components/Modal.tsx index 55ad174..80d482e 100644 --- a/src/components/Modal.tsx +++ b/src/components/Modal.tsx @@ -22,7 +22,10 @@ export default function Modal({ }: ModalProps) { return ( open && ( - <div className="z-999 fixed left-0 top-0 flex h-full w-full items-center justify-center bg-black bg-opacity-50 py-10"> + <div + className="z-999 fixed left-0 top-0 flex h-full w-full items-center justify-center bg-black bg-opacity-50 py-10" + onClick={() => onOk()} + > <div className="max-h-full w-full max-w-xl overflow-y-auto sm:rounded-2xl bg-white"> <div className="w-full"> <div className="mx-auto my-20 max-w-[400px] flex flex-col gap-5"> |