Skip to content

Commit

Permalink
fix(frontend): fix lingui text
Browse files Browse the repository at this point in the history
  • Loading branch information
JaydenXu-BTC committed Oct 13, 2024
1 parent e7fdcac commit d91c408
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client'

import { t } from '@lingui/macro'
import { Trans } from '@lingui/macro'
import { VStack } from 'styled-system/jsx'

import ComingSoonSVG from '@/assets/coming-soon.svg'
Expand All @@ -10,7 +10,9 @@ export default function Page() {
return (
<VStack gap="10px" w="100%" bg="bg.card" maxW="content" p="30px" rounded="8px" pt="74px" pb="260px">
<ComingSoonSVG w="200px" h="200px" />
<Text color="text.third" fontSize="14px">{t`Coming soon, please stay tuned`}</Text>
<Text color="text.third" fontSize="14px">
<Trans>Coming soon, please stay tuned</Trans>
</Text>
</VStack>
)
}

0 comments on commit d91c408

Please sign in to comment.