Skip to content

Create new production release #639

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 4 commits into from
May 13, 2025
Merged
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
15 changes: 13 additions & 2 deletions frontend/src/components/AirdropBanner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,17 @@ export const AirdropBanner = () => {
transition={{ delay: 0.2 }}
>
<Trans i18nKey="components.airdropBanner.list.2">
Earned rewards are sent to the blockchain network linked to your transaction.
<strong>No need to claim!</strong>
</Trans>
</motion.li>
<motion.li
className="mb-2"
initial={{ opacity: 0, x: -10 }}
animate={{ opacity: 1, x: 0 }}
transition={{ delay: 0.3 }}
>
<Trans i18nKey="components.airdropBanner.list.3">
One reward per person, paid out every 24 hours – <strong>Check your status</strong>
<a
className="underline hover:text-blue-700 transition font-bold"
Expand All @@ -80,9 +91,9 @@ export const AirdropBanner = () => {
className="mb-2"
initial={{ opacity: 0, x: -10 }}
animate={{ opacity: 1, x: 0 }}
transition={{ delay: 0.3 }}
transition={{ delay: 0.4 }}
>
<Trans i18nKey="components.airdropBanner.list.3">
<Trans i18nKey="components.airdropBanner.list.4">
Your trust matters – <strong>Vortex is </strong>
<a
className="underline hover:text-blue-700 transition font-bold"
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,10 @@
"description": "Buy or sell USDT/C from just R$5 - get 20 USDT for FREE",
"button": "More info",
"list": {
"1": "<1>All eligible users get 10 USDT</1> - the first 100 receive a 10 USDT bonus, totaling 20 USDT. Rewards go to your wallet on Base or AssetHub.",
"2": "One reward per person, paid out every day - <1>check your status</1> <2>here</2>.",
"3": "Your trust matters - <1>Vortex is</1> <2>open source</2> for full transparency."
"1": "<1>All eligible users get 10 USDT</1> - the first 100 receive a 10 USDT bonus, totaling 20 USDT.",
"2": "Earned rewards are sent directly to your wallet. <1>No need to claim!</1>",
"3": "One reward per person, paid out every day - <1>check your status</1> <2>here</2>.",
"4": "Your trust matters - <1>Vortex is</1> <2>open source</2> for full transparency."
}
},
"emailForm": {
Expand Down
7 changes: 4 additions & 3 deletions frontend/src/translations/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,10 @@
"description": "Compre ou venda USDT/C por apenas R$5 - receba 20 USDT de graça!",
"button": "Mais informações",
"list": {
"1": "<1>Todos os usuários elegíveis recebem 10 USDT</1> - os primeiros 100 recebem um bônus de 10 USDT, totalizando 20 USDT. Recompensas vão para sua carteira na Base ou AssetHub.",
"2": "Uma recompensa por pessoa, paga diariamente – <1>confira seu status</1> <2>aqui</2>.",
"3": "Sua confiança é importante – <1>o Vortex é</1> <2>open source</2> para total transparência."
"1": "<1>Todos os usuários elegíveis recebem 10 USDT</1> - os primeiros 100 recebem um bônus de 10 USDT, totalizando 20 USDT.",
"2": "As recompensas ganhas são enviadas diretamente para sua carteira. <1>Não é necessário reivindicar!</1>",
"3": "Uma recompensa por pessoa, paga diariamente – <1>confira seu status</1> <2>aqui</2>.",
"4": "Sua confiança é importante – <1>o Vortex é</1> <2>open source</2> para total transparência."
}
},
"emailForm": {
Expand Down
Loading