Skip to content

Commit

Permalink
feat: sync website footer with about page
Browse files Browse the repository at this point in the history
  • Loading branch information
0xHieu01 committed Feb 22, 2024
1 parent 7ce0a13 commit 1248593
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/src/containers/Footer/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from "react";

import { AiOutlineGithub, AiOutlineTwitter } from "react-icons/ai";
import { BiLogoDiscordAlt } from "react-icons/bi";
import { BiLogoDiscordAlt, BiLogoLinkedin } from "react-icons/bi";

const socials = [
{
Expand All @@ -16,6 +16,10 @@ const socials = [
icon: <AiOutlineGithub className="text-lg text-black dark:text-white" />,
href: "https://github.com/janhq/jan",
},
{
icon: <BiLogoLinkedin className="text-xl text-black dark:text-white" />,
href: "https://www.linkedin.com/company/janframework/",
}
];

const menus = [
Expand Down Expand Up @@ -59,6 +63,11 @@ const menus = [
path: "https://twitter.com/janframework",
external: true,
},
{
menu: "LinkedIn",
path: "https://www.linkedin.com/company/janframework/",
external: true,
}
],
},
{
Expand Down

0 comments on commit 1248593

Please sign in to comment.