Skip to content

Commit

Permalink
Merge pull request #24 from NEARBuilders/telegram-link
Browse files Browse the repository at this point in the history
Added telegram link
  • Loading branch information
bb-face authored May 29, 2024
2 parents 7c1df05 + c4edae6 commit 47a3146
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
1 change: 0 additions & 1 deletion gateway/src/components/Player/ApiKey.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ const FormContainer = styled.form`
cursor: pointer;
width: 300px;
transition: background-color 0.3s ease;
&:hover {
background-color: #1c1a1a;
}
Expand Down
27 changes: 27 additions & 0 deletions widget/page/home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,28 @@ url={"https://livepeer-webserver-613b208ef083.herokuapp.com"}
\`\`\`
`;

const TelegramButton = styled.a`
position: absolute;
bottom: -540px;
right: 400px;
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
background-color: #ffffff;
color: white;
border-radius: 50%;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
&:hover {
background-color: #555555;
cursor: pointer;
}
`;

const Option1 = () => (
<OptionComponent>
<div>
Expand Down Expand Up @@ -468,5 +490,10 @@ return (
)}
</>
)}
<TelegramButton>
<a href="https://t.me/+QgLwbmDEFgo5NTM1" target="_blank">
<img src="https://ipfs.near.social/ipfs/bafkreifg6zr4kse7ew7mv3l5wiw4bd7qbkpy6a4r6xndfq5lechsctronu" />
</a>
</TelegramButton>
</Container>
);

0 comments on commit 47a3146

Please sign in to comment.