Skip to content

Commit

Permalink
Added Instagram and Linkedin to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
ashkano committed Jan 7, 2025
1 parent d55251e commit f1e4da2
Showing 1 changed file with 7 additions and 1 deletion.
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

0 comments on commit f1e4da2

Please sign in to comment.