Skip to content

Commit

Permalink
fix: code review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tetogomez committed Sep 16, 2020
1 parent 97545ef commit 61ec331
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 16 deletions.
Binary file added public/evodex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Footer/TalkUsModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ const TalkUsModal = ({ openModal, setOpenModal }) => {

<Link
className={clsx(classes.boxLinks, classes.marginBottomLink)}
href="https://twitter.com/eosargentina"
href="https://twitter.com/evodex_io"
target="_blank"
rel="noopener noreferrer"
>
Expand Down
38 changes: 25 additions & 13 deletions src/components/PageTitle/TitlePage.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,38 @@ import PropTypes from 'prop-types'
const TitlePage = ({ title }) => (
<Helmet>
<title>{title}</title>
<meta name="title" content="" />
<meta name="description" content="" />
<meta
name="title"
content="Evolution DEX - Decentralized Exchange on EOS"
/>
<meta
name="description"
content="Evodex is a decentralized exchange that promotes the use of EOS for DeFi. The project is completely open source and free for developers to build on the protocol"
/>
{/* Open Graph / Facebook */}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://metatags.io/" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:url" content="https://evodex.io/" />
<meta
property="og:image"
content="https://user-images.githubusercontent.com/5632966/92547334-e3e4a600-f211-11ea-864e-a4cfee7ebba8.png"
property="og:title"
content="Evolution DEX - Decentralized Exchange on EOS"
/>
<meta
property="og:description"
content="Evodex is a decentralized exchange that promotes the use of EOS for DeFi. The project is completely open source and free for developers to build on the protocol"
/>
<meta property="og:image" content="https://evodex.io/evodex.png" />
{/* Twitter */}
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://metatags.io/" />
<meta property="twitter:title" content="" />
<meta property="twitter:description" content="" />
<meta property="twitter:url" content="https://evodex.io/" />
<meta
property="twitter:title"
content="Evolution DEX - Decentralized Exchange on EOS"
/>
<meta
property="twitter:image"
content="https://user-images.githubusercontent.com/5632966/92547334-e3e4a600-f211-11ea-864e-a4cfee7ebba8.png"
property="twitter:description"
content="Evodex is a decentralized exchange that promotes the use of EOS for DeFi. The project is completely open source and free for developers to build on the protocol"
/>
<meta property="twitter:image" content="https://evodex.io/evodex.png" />
</Helmet>
)

Expand All @@ -33,7 +45,7 @@ TitlePage.propTypes = {
}

TitlePage.defaultProps = {
title: 'Evodex - EOS decentralized exchange'
title: 'Evolution DEX - Decentralized Exchange on EOS'
}

export default TitlePage
2 changes: 1 addition & 1 deletion src/routes/Evodex/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ const SOCIAL = [
},
{
title: 'Twitter',
href: 'https://twitter.com/eosargentina',
href: 'https://twitter.com/evodex_io',
icon: <TwitterIcon />
}
]
Expand Down
2 changes: 1 addition & 1 deletion src/routes/Evodex/SubmenuTopbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const SOCIAL = [
icon: <TelegramIcon />
},
{
href: 'https://twitter.com/eosargentina',
href: 'https://twitter.com/evodex_io',
icon: <TwitterIcon />
}
]
Expand Down

0 comments on commit 61ec331

Please sign in to comment.