Skip to content

Commit

Permalink
fix: changed logo icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
ATREAY committed Jan 20, 2024
1 parent c8b4907 commit 2647689
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"cSpell.words": ["borderbottomcolor", "projectworkxp"],
"[dotenv]": {
Expand Down
Binary file modified public/discord.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/discordDark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/substack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/substackDark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/youtube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/youtubeDark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions src/components/Logo/Socialimg.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { Center, HStack, useColorModeValue } from '@chakra-ui/react';
import Image from 'next/image';
import { useRouter } from 'next/router';


const SocialMediaIcons = () => {
const earnLogoURL = useColorModeValue('/earnLogoDark.png', '/earnLogo.png');
const buildLogoURL = useColorModeValue('/buildLogoDark.png', '/buildLogo.png');
const twitterLogoURL = useColorModeValue('/twitter.png', '/twitterDark.png');
const substackLogoURL = useColorModeValue('/substackDark.png', '/substack.png');
const discordLogoURL = useColorModeValue('/discordDark.png', '/discord.png');
const youtubeLogoURL = useColorModeValue('/youtubeDark.png', '/youtube.png');

return (
<Center>
Expand All @@ -21,13 +23,13 @@ const SocialMediaIcons = () => {
<Image src={twitterLogoURL} alt="Twitter" width={24} height={24} />
</a>
<a href="https://www.youtube.com/@superteampodcast">
<Image src="/youtube.png" alt="YouTube" width={24} height={24} />
<Image src={youtubeLogoURL} alt="YouTube" width={24} height={24} />
</a>
<a href="https://discord.com/invite/Mq3ReaekgG">
<Image src="/discord.png" alt="Discord" width={28} height={28} />
<Image src={discordLogoURL} alt="Discord" width={28} height={28} />
</a>
<a href="https://superteam.substack.com/">
<Image src="/substack.png" alt="Substack" width={28} height={28} />
<Image src={substackLogoURL} alt="Substack" width={17} height={17} />
</a>
</HStack>
</Center>
Expand Down

0 comments on commit 2647689

Please sign in to comment.