diff --git a/.env.sample b/.env.sample index 39e1e43..1277ade 100644 --- a/.env.sample +++ b/.env.sample @@ -9,6 +9,7 @@ STORAGE_FOLDER= AUTOSCROLL_TIMEOUT= NEXT_PUBLIC_DISABLE_REGISTRATION= IMPORT_SIZE_LIMIT= +RE_ARCHIVE_LIMIT= # AWS S3 Settings SPACES_KEY= diff --git a/README.md b/README.md index a830530..cf74430 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,6 @@ Here are the other ways to support/cheer this project: - Starring this repository. - Joining us on [Discord](https://discord.com/invite/CtuYV47nuJ). -- Following @daniel31x13 on [Mastodon](https://mastodon.social/@daniel31x13), [Twitter](https://twitter.com/daniel31x13) and [GitHub](https://github.com/daniel31x13). - Referring Linkwarden to a friend. If you did any of the above, Thanksss! Otherwise thanks. diff --git a/components/AnnouncementBar.tsx b/components/AnnouncementBar.tsx new file mode 100644 index 0000000..6e46eea --- /dev/null +++ b/components/AnnouncementBar.tsx @@ -0,0 +1,35 @@ +import { faClose } from "@fortawesome/free-solid-svg-icons"; +import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; +import Link from "next/link"; +import React, { MouseEventHandler } from "react"; + +type Props = { + toggleAnnouncementBar: MouseEventHandler; +}; + +export default function AnnouncementBar({ toggleAnnouncementBar }: Props) { + return ( +
+
+
+ 🎉️{" "} + + Linkwarden v2.0 + {" "} + is now out! 🥳️ +
+ + +
+
+ ); +} diff --git a/components/Checkbox.tsx b/components/Checkbox.tsx index 6c661c5..d54c08b 100644 --- a/components/Checkbox.tsx +++ b/components/Checkbox.tsx @@ -11,7 +11,9 @@ type Props = { export default function Checkbox({ label, state, className, onClick }: Props) { return ( -