Skip to content

Commit

Permalink
Merge pull request #45 from ashkan-o/main
Browse files Browse the repository at this point in the history
minor fixes
  • Loading branch information
behdanisohrab authored Jan 7, 2025
2 parents 946f0f4 + 7529524 commit 6fc9b06
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
8 changes: 7 additions & 1 deletion components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Link from "next/link";
import { useTranslation } from "@/utils/translation"
import { SiBluesky, SiDiscord, SiMastodon, SiTelegram, SiX } from "@icons-pack/react-simple-icons";
import { SiBluesky, SiDiscord, SiInstagram, SiLinkedin, SiMastodon, SiTelegram, SiX } from "@icons-pack/react-simple-icons";

export function Footer() {
const { t } = useTranslation();
Expand Down Expand Up @@ -36,6 +36,12 @@ export function Footer() {
<Link href="https://discord.gg/9RW5cRByAM">
<SiDiscord className="w-4 h-4" />
</Link>
<Link href="https://instagram.com/parchlinux">
<SiInstagram className="w-4 h-4" />
</Link>
<Link href="https://www.linkedin.com/company/parch-linux">
<SiLinkedin className="w-4 h-4" />
</Link>
<div className="text-sm">
{t('footer.copyright')}
</div>
Expand Down
2 changes: 1 addition & 1 deletion i18n/en.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export default {
footer: {
copyright: '© 2021-2024 Parch Linux Team',
copyright: '© 2021-2025 Parch Linux Team',
privacyPolicy: 'Privacy Policy',
termsOfService: 'Terms of Service',
whitepaper: 'Whitepaper',
Expand Down
12 changes: 6 additions & 6 deletions pages/join.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,28 +35,28 @@ export default function Join() {
<JoinCard
icon={Users}
caption={t('join.caption.forum')}
url="#"
url="https://forum.parchlinux.com"
link={t('join.link.forum')}
text={t('join.text.forum')}
arrow={arrow} />
<JoinCard
icon={Book}
caption={t('join.caption.wiki')}
url="#"
url="https://wiki.parchlinux.com"
link={t('join.link.wiki')}
text={t('join.text.wiki')}
arrow={arrow} />
<JoinCard
{/* <JoinCard
icon={MessageCircle}
caption={t('join.caption.chat')}
url="#"
url="https://matrix.to/#/%23parch:bsd.cafe"
link={t('join.link.chat')}
text={t('join.text.chat')}
arrow={arrow} />
arrow={arrow} /> */}
<JoinCard
icon={Code}
caption={t('join.caption.contrib')}
url="#"
url="https://git.parchlinux.com"
link={t('join.link.contrib')}
text={t('join.text.contrib')}
arrow={arrow} />
Expand Down

0 comments on commit 6fc9b06

Please sign in to comment.