Skip to content

Commit

Permalink
update twitter logo to X (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
sohamtembhurne authored Oct 19, 2023
1 parent 9866500 commit f135d63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions next/src/components/dialog/HelpDialog.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useTranslation } from "next-i18next";
import React, { useEffect, useState } from "react";
import { FaDiscord, FaGithub, FaTwitter } from "react-icons/fa";
import { FaDiscord, FaGithub } from "react-icons/fa";
import {FaXTwitter} from 'react-icons/fa6';

import Dialog from "../../ui/dialog";

Expand Down Expand Up @@ -65,7 +66,7 @@ export default function HelpDialog() {
)
}
>
<FaTwitter size={30} />
<FaXTwitter size={30} />
</div>
<div
className="cursor-pointer rounded-full bg-slate-6 p-3 hover:bg-slate-8"
Expand Down
4 changes: 2 additions & 2 deletions next/src/components/sidebar/links.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import {
FaHome,
FaLinkedin,
FaQuestion,
FaTwitter,
FaWater,
} from "react-icons/fa";
import {FaXTwitter} from 'react-icons/fa6';

type LinkMetadata = {
name: string;
Expand Down Expand Up @@ -85,7 +85,7 @@ export const SOCIAL_LINKS: LinkMetadata[] = [
{
name: "Twitter",
href: "https://twitter.com/ReworkdAI",
icon: FaTwitter,
icon: FaXTwitter,
enabled: true,
},
{
Expand Down

0 comments on commit f135d63

Please sign in to comment.