diff --git a/components/community.tsx b/components/community.tsx index d8a0e081..9dcd0612 100644 --- a/components/community.tsx +++ b/components/community.tsx @@ -3,7 +3,7 @@ import "./community.css"; import Image from "next/image"; import CommunityBunny from "@/public/images/community-bunny.png"; import GithubSvg from "@/public/images/social/github.svg"; -import TwitterSvg from "@/public/images/social/twitter.svg"; +import TwitterSvg from "@/public/images/social/x-twitter.svg"; import SlackSvg from "@/public/images/social/slack.svg"; import YoutubeSvg from "@/public/images/social/youtube.svg"; import LinkedinSvg from "@/public/images/social/linkedin.svg"; @@ -81,7 +81,7 @@ export default function Community() { { link: "https://twitter.com/Keployio", svgIcon: TwitterSvg, - platformName: "Twitter", + platformName: "X-Twitter", description: "Let's talk about regression testing!", }, { diff --git a/components/tweets.tsx b/components/tweets.tsx index 588d4d04..a9b74f9c 100644 --- a/components/tweets.tsx +++ b/components/tweets.tsx @@ -3,7 +3,7 @@ import React from "react"; import Image from "next/image"; import Link from "next/link"; -import XImage from "@/public/images/x-twitter.svg" +import XImage from "@/public/images/social/x-twitter.svg" const Tweets = ({ avatar, diff --git a/next.config.js b/next.config.js index e3ddbd52..80f339c2 100644 --- a/next.config.js +++ b/next.config.js @@ -53,4 +53,4 @@ module.exports = withBundleAnalyzer({ domains: ["web-stories.keploy.io.s3.amazonaws.com"], unoptimized: true, }, -}); \ No newline at end of file +}); diff --git a/public/images/x-twitter.svg b/public/images/social/x-twitter.svg similarity index 100% rename from public/images/x-twitter.svg rename to public/images/social/x-twitter.svg