Skip to content

Commit

Permalink
Merge pull request #96 from shivam-sharma7/social
Browse files Browse the repository at this point in the history
Reference github instead gitlab social icon
  • Loading branch information
GeorgeApos authored Apr 18, 2024
2 parents dc9eff6 + bd411b7 commit 06b3e07
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/assets/data/SocialMediaUrls.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export const SOCIAL_MEDIA_URLS = {
"https://www.youtube.com/channel/UC98Ggzq6dl_nn5Y0BHb6SLA?sub_confirmation=1",
twitter: "https://twitter.com/opensource_uom",
LinkedIn: "https://www.linkedin.com/company/80766091/",
gitlab: "https://gitlab.com/opensourceuom",
github: "https://github.com/open-source-uom/myuom",
discord: "https://discord.com/invite/XtxtM3ZHUm",
};
2 changes: 1 addition & 1 deletion src/assets/locales/el/settings_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
license: "Άδεια Χρήσης",
app_manual: "Εγχειρίδιο Εφαρμογής",
share_app: "Κοινοποιήστε την εφαρμογή",
gitlab_contribute: "Συνεισφέρετε στο έργο μας",
github_contribute: "Συνεισφέρετε στο έργο μας",
settings_close: "Κλείσιμο",
change_language: "Αλλαγή Γλώσσας",
choose_department: "Επιλέξτε Τμήμα",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/locales/en/settings_page.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
license: "License",
app_manual: "App Manual",
share_app: "Share this App",
gitlab_contribute: "Contribute to our Projects",
github_contribute: "Contribute to our Projects",
settings_close: "Close",
change_language: "Change Language",
choose_department: "Choose Department",
Expand Down
8 changes: 4 additions & 4 deletions src/components/settings/SettingsDrawer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
FaInfoCircle,
FaFileAlt,
FaShareAlt,
FaGitlab,
FaGithub,
FaBook,
FaRegComment,
} from "react-icons/fa";
Expand Down Expand Up @@ -105,7 +105,7 @@ export function SettingsDrawer({ isOpen, onClose }) {
</Link>

<a
href="https://gitlab.com/opensourceuom/myUoM/-/blob/main/LICENSE"
href="https://github.com/open-source-uom/myuom/blob/main/LICENSE"
target="_blank"
rel="noopener noreferrer"
>
Expand All @@ -121,11 +121,11 @@ export function SettingsDrawer({ isOpen, onClose }) {
</a>
<SettingsOption Icon={FaShareAlt} onClick={handleShare} text={i18n.t("share_app")} />
<a
href="https://gitlab.com/opensourceuom/myUoM"
href="https://github.com/open-source-uom/myuom"
target="_blank"
rel="noopener noreferrer"
>
<SettingsOption Icon={FaGitlab} onClick={onClose} text={i18n.t("gitlab_contribute")} />
<SettingsOption Icon={FaGithub} onClick={onClose} text={i18n.t("github_contribute")} />
</a>
<a
href="https://docs.google.com/forms/u/2/d/e/1FAIpQLSduM517c4OtIs-CNv5cjQtYcj6OXRDtCP6x0Q7d4Ymhd3xQMg/viewform"
Expand Down
2 changes: 1 addition & 1 deletion src/pages/AboutSettingsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function AboutSettingsPage() {
style={{ marginRight: "0.5rem" }}
/>
<SocialIcon
url={SOCIAL_MEDIA_URLS.gitlab}
url={SOCIAL_MEDIA_URLS.github}
style={{ marginRight: "0.5rem" }}
/>
<SocialIcon
Expand Down

0 comments on commit 06b3e07

Please sign in to comment.