From 1b31ad830acfd612ab349f14f8850c68a10ba641 Mon Sep 17 00:00:00 2001 From: Vijay A Date: Sat, 16 Apr 2022 22:58:44 +0530 Subject: Fix rename of files and folders from 'Ferdi' to 'Ferdium' --- .../supportFerdium/SupportFerdiumDashboard.tsx | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 src/components/settings/supportFerdium/SupportFerdiumDashboard.tsx (limited to 'src/components/settings/supportFerdium') diff --git a/src/components/settings/supportFerdium/SupportFerdiumDashboard.tsx b/src/components/settings/supportFerdium/SupportFerdiumDashboard.tsx new file mode 100644 index 000000000..16f3149b6 --- /dev/null +++ b/src/components/settings/supportFerdium/SupportFerdiumDashboard.tsx @@ -0,0 +1,86 @@ +import { defineMessages, useIntl } from 'react-intl'; + +const messages = defineMessages({ + headline: { + id: 'settings.supportFerdium.headline', + defaultMessage: 'About Ferdium', + }, + aboutIntro: { + id: 'settings.supportFerdium.aboutIntro', + defaultMessage: 'Special thanks goes to these awesome people:', + }, + about: { + id: 'settings.supportFerdium.about', + defaultMessage: 'The development of Ferdium is done by contributors. People who use Ferdium like you. They maintain, fix, and improve Ferdium in their spare time.', + } +}); + +const SupportFerdiumDashboard = () => { + const intl = useIntl(); + + return ( +
+
+ + {intl.formatMessage(messages.headline)} + +
+
+
+

+ + Twitter Follow + + + GitHub Stars + + + Crowdin + + + Open Collective backers + +

+

{intl.formatMessage(messages.aboutIntro)}

+

+ + GitHub contributors (non-exhaustive) + +

+

{intl.formatMessage(messages.about)}

+
+
+
+ ); +}; + +export default SupportFerdiumDashboard; -- cgit v1.2.3-70-g09d2