Skip to content

Commit

Permalink
update texts and twitter account (#71)
Browse files Browse the repository at this point in the history
* update texts and twitter account

* run prettier
  • Loading branch information
sebastianscatularo authored Apr 2, 2024
1 parent 00f1ceb commit bf27d25
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const Layout = ({ children, setDisclaimerWasRead }: LayoutProps) => {
</span>
<div className="mb-5 flex items-center gap-6 lg:mb-0">
<Link
href="https://twitter.com/wormholecrypto"
href="https://twitter.com/wormhole"
target="_blank"
rel="noreferrer"
>
Expand Down
6 changes: 3 additions & 3 deletions frontend/components/buttons/SolanaWalletCopyButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ import { WalletIcon } from '@components/wallets/WalletButton'
// This component will only render when solana wallet is connected
export function SolanaWalletCopyButton() {
const solanaIdentity = useGetEcosystemIdentity()(Ecosystem.SOLANA)
const [tooltipContent, setTooltipContent] = useState('copy')
const [tooltipContent, setTooltipContent] = useState('Copy')
const { wallet } = useWallet()

if (solanaIdentity === undefined) return <></>
return (
<div
className="w-max"
onMouseEnter={() => setTooltipContent('copy')}
onMouseEnter={() => setTooltipContent('Copy')}
onMouseDown={() => {
setTooltipContent('copied')
setTooltipContent('Copied')
}}
>
<Tooltip content={tooltipContent} placement={'bottom'}>
Expand Down
2 changes: 1 addition & 1 deletion frontend/next-seo.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default {
],
},
twitter: {
handle: '@wormholecrypto',
handle: '@wormhole',
cardType: 'summary_large_image',
},
}
10 changes: 8 additions & 2 deletions frontend/pages/verify-eligibility/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ export default function VerifyEligibilityPage() {
previous step. Feel free to go back and adjust any selections if
necessary.
</p>
<p>
{`Note that you won't be able to move on to the next step and claim your W unless all your wallets or Discord account are successfully connected.`}
<p className="mb-6">
Note that you won&apos;t be able to move on to the next step and claim
your W unless all your wallets or Discord account are successfully
connected.
</p>
<p className="">
If you are connecting a Solana wallet to verify eligibility, keep in
mind that the same wallet will be used to claim your W.
</p>

<div className="mt-12 flex justify-end gap-4">
Expand Down
4 changes: 4 additions & 0 deletions frontend/sections/LoggedInSolana.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ export const LoggedInSolana = ({ onBack, onProceed }: StepProps) => {
The W you claim will be sent to the Solana wallet you link during this
process.
</p>
<p className="mb-6">
If you connected a Solana wallet to verify eligibility, keep in mind
that the same wallet will be used to claim your W.
</p>
<p className="">
To change the connected wallet please go to the previous step.
</p>
Expand Down

0 comments on commit bf27d25

Please sign in to comment.