Skip to content
Merged
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
26 changes: 18 additions & 8 deletions frontend/src/layouts/AppHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
RiGuideLine,
RiTwitterXFill,
} from "react-icons/ri";
import { FaGithub, FaGoogle } from "react-icons/fa";
import { FaGithub, FaGoogle, FaLinkedin } from "react-icons/fa";
import { IoSearch } from "react-icons/io5";
import { TbReport } from "react-icons/tb";

Expand Down Expand Up @@ -143,9 +143,9 @@ function RightLinks({ handleClickStart, isAuthenticated }) {
href={`https://twitter.com/${INTELOWL_TWITTER_ACCOUNT}`}
target="_blank"
rel="noopener noreferrer"
className="btn-social"
className="btn-social d-flex align-items-center"
>
<RiTwitterXFill className="text-info" /> Follow @
<RiTwitterXFill className="text-info me-1" /> Follow @
{INTELOWL_TWITTER_ACCOUNT}
</a>
</div>
Expand All @@ -154,27 +154,37 @@ function RightLinks({ handleClickStart, isAuthenticated }) {
href="https://github.com/intelowlproject"
target="_blank"
rel="noopener noreferrer"
className="btn-social my-1"
className="btn-social my-1 d-flex align-items-center"
>
<FaGithub /> Connect on Github{" "}
<FaGithub className="me-1" /> Connect on Github{" "}
</a>
</div>
<div>
<a
href="https://www.linkedin.com/company/intelowl"
target="_blank"
rel="noopener noreferrer"
className="btn-social my-1 d-flex align-items-center"
>
<FaLinkedin className="me-1" /> IntelOwl on LinkedIn{" "}
</a>
</div>
<div>
<a
href="https://www.honeynet.org/gsoc/"
target="_blank"
rel="noopener noreferrer"
className="btn-social my-1"
className="btn-social my-1 d-flex align-items-center"
>
<FaGoogle className="text-accent" /> Honeynet on GSOC{" "}
<FaGoogle className="text-accent me-1" /> Honeynet on GSOC{" "}
</a>
</div>
<div>
<a
href="https://gsoc-slack.honeynet.org/"
target="_blank"
rel="noopener noreferrer"
className="btn-social my-1"
className="btn-social my-1 d-flex align-items-center"
>
<img
className="px-1"
Expand Down