Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading