Skip to content

Commit

Permalink
Merge pull request #144 from Ncookiez/production
Browse files Browse the repository at this point in the history
V5 Beta -> Public Launch Banner
  • Loading branch information
asselstine authored Oct 19, 2023
2 parents 14c9c36 + 7f0d746 commit 248d10f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/components/AnnouncementBanner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ export const AnnouncementBanner = (props: { href: string; i18nKey?: string }) =>
)
}

export const V5BetaAnnouncementBanner = () => {
export const V5AnnouncementBanner = () => {
return (
<a
href='https://pooltogether.mirror.xyz/IeSRsl6cRCF64LqBruoHINJb1EipiBcRm-JU2U9-WuI'
href='https://pooltogether.mirror.xyz/CBvKNusRaaLJUSFH9ZQHureadrOF7eE7r6QsgqP2Oc8'
rel='noopener noreferrer'
target='_blank'
className={classNames(
'px-2 xs:px-8 bg-actually-black bg-opacity-5 hover:bg-opacity-20 dark:bg-actually-black dark:bg-opacity-50 dark:hover:bg-opacity-100 transition w-full max-w-screen-xs mx-auto xs:rounded-lg py-2 text-pt-purple-darkest dark:text-white flex flex-row items-center justify-center text-center text-xxxs sm:text-xs hover:shadow-md'
)}
>
<span>
📣 The private beta for PoolTogether V5 is live!
📣 PoolTogether V5 is live!
<FeatherIcon
icon='arrow-up-right'
className='ml-1 mb-0.5 w-2 h-2 xs:w-3 xs:h-3 inline-block'
Expand Down
4 changes: 2 additions & 2 deletions src/views/Deposit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { useTranslation } from 'next-i18next'
import React from 'react'
import { DepositTrigger } from './DepositTrigger'
import { PrizePoolNetworkCarousel } from './PrizePoolNetworkCarousel'
import { AnnouncementBanner, V5BetaAnnouncementBanner } from '../../components/AnnouncementBanner'
import { AnnouncementBanner, V5AnnouncementBanner } from '../../components/AnnouncementBanner'

export const DepositUI = () => {
return (
Expand All @@ -21,7 +21,7 @@ export const DepositUI = () => {
href={'https://pooltogether.mirror.xyz/-ZAV-RfzeNW5F1fnGGjMF3LL7G8NNgMhYwhWMS3Y4rI'}
i18nKey={'pooltogetherEnsSubdomain'}
/> */}
<V5BetaAnnouncementBanner />
<V5AnnouncementBanner />
<ActiveProposalsBanner />
</div>
<PrizePoolNetworkCarousel />
Expand Down

0 comments on commit 248d10f

Please sign in to comment.