Skip to content

Commit

Permalink
fix(main): container
Browse files Browse the repository at this point in the history
  • Loading branch information
dimakorzhovnik committed May 29, 2024
1 parent a503f8c commit dac3b06
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
12 changes: 9 additions & 3 deletions front/src/components/main/Menu/JoinCommunity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,27 @@ const JoinCommunity = () => {
<JoinCommunityWrapper>
<JoinCommunityTitle>Join in our community</JoinCommunityTitle>
<JoinCommunityButtonList>
<JoinCommunityButton onClick={() => handleNewTap("https://twitter.com/cyber_devs")}>
<JoinCommunityButton
onClick={() => handleNewTap("https://twitter.com/cyber_devs")}
>
<div>
<img src={IcMenuTwitter} alt="twitter" />
Twitter
</div>
<img src={IcNftMoreArrow} alt="moreArrow" width={10} />
</JoinCommunityButton>
<JoinCommunityButton onClick={() => handleNewTap("https://github.com/cybercongregss")}>
<JoinCommunityButton
onClick={() => handleNewTap("https://github.com/cybercongress")}
>
<div>
<img src={IcMenuGithub} alt="github" />
Github
</div>
<img src={IcNftMoreArrow} alt="moreArrow" width={10} />
</JoinCommunityButton>
<JoinCommunityButton onClick={() => handleNewTap("https://discord.com/invite/ARwv74ZyGH")}>
<JoinCommunityButton
onClick={() => handleNewTap("https://discord.com/invite/ARwv74ZyGH")}
>
<div>
<img src={IcMenuDiscord} alt="discord_disabled" />
Discord
Expand Down
5 changes: 2 additions & 3 deletions front/src/pages/Main/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ const Main = () => {
{centerContent}

{passport && (
<Display title={<DisplayTitle title="Passport" />}>
<Display title={<DisplayTitle title="moon passport" />}>
<div
style={{
fontSize: 14,
Expand All @@ -232,8 +232,7 @@ const Main = () => {
)}

{textProof && (
<Display>
<DisplayTitle title="Message" />
<Display title={<DisplayTitle title="message" />}>
<div
style={{
fontSize: 14,
Expand Down

0 comments on commit dac3b06

Please sign in to comment.