Skip to content
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.

Solves Issue #9: Provide more clarity about SushiSwap #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
2 changes: 1 addition & 1 deletion src/components/TopBar/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const Nav: React.FC = () => {
Staking
</StyledLink>
<StyledAbsoluteLink
href="https://medium.com/sushiswap/the-sushiswap-project-c4049ea9941e"
href="https://help.sushidocs.com/"
target="_blank"
>
About
Expand Down
18 changes: 15 additions & 3 deletions src/views/Home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,28 @@ const Home: React.FC = () => {
</Container>
<Spacer size="lg" />
<StyledInfo>
🏆<b>Pro Tip</b>: SUSHI-ETH UNI-V2 LP token pool yields TWICE more token
rewards per block.
<b>🪂 Welcome!</b>
</StyledInfo>
<StyledInfo>
You're currently using our classic interface (<b>sushiswapclassic.org</b>).
</StyledInfo>
<StyledInfo>
Soon, we'll be launching a new UI on <b>sushiswap.org</b>.
</StyledInfo>
<StyledInfo>
Until that time, please enjoy using our classic interface!
</StyledInfo>
<Spacer size="lg" />
<div
style={{
margin: '0 auto',
}}
>
<Button text="🔪 See the Menu" to="/farms" variant="secondary" />
<Button
text="🔪 Learn more about SushiSwap"
href="https://help.sushidocs.com/"
variant="secondary"
/>
</div>
</Page>
)
Expand Down