Skip to content

removed the farms banner warning to harvest #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 26, 2022
Merged
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
23 changes: 0 additions & 23 deletions src/pages/farms/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,12 @@ import PageHeader from '@/components/PageHeader'

import Balances from './components/Balances'
import FarmList from './components/FarmList'
import Card from '@/components/Card'
import Typography from '@/components/Typography'
import Link from 'next/link'

const Farms: React.FC = () => {
return (
<>
<NextSeo title={'Farms'} description={'Stake LP tokens to earn BAO.'} />
<PageHeader title='Farms' />
<Card className='flex'>
<div className='flex-row'>
<Typography variant='lg' className='mr-2 inline font-bold text-red'>
Attention:
</Typography>
<Typography className='inline'>
Withdraw your LP tokens and migrate to{' '}
<Link href='/distribution/'>
<a className='font-bold hover:text-text-400'>Gauges</a>
</Link>{' '}
if you wish to continue farming BAO. If you didn{"'"}t harvest before the November 19 snapshot of locked BAO, you will only be
able to migrate the balance you had at the time of the snapshot. Any liquid BAO collected from harvests post-snapshot can be
swapped with the{' '}
<Link href='/distribution/'>
<a className='font-bold hover:text-text-400'>migration swapper</a>
</Link>
.
</Typography>
</div>
</Card>
<Balances />
<FarmList />
</>
Expand Down