minor fixes #45
3 changed files with 14 additions and 8 deletions
|
@ -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();
|
||||
|
@ -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>
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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} />
|
||||
|
|
Loading…
Add table
Reference in a new issue