Skip to content

Commit

Permalink
chore: i18n extract (#965)
Browse files Browse the repository at this point in the history
* chore: i18n extract 

* cleanup
  • Loading branch information
sasicodes committed Aug 17, 2023
1 parent a98190a commit c462791
Show file tree
Hide file tree
Showing 5 changed files with 380 additions and 284 deletions.
12 changes: 8 additions & 4 deletions apps/web/src/components/Home/GitcoinAlert.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import HandWaveOutline from '@components/Common/Icons/HandWaveOutline'
import { Button } from '@components/UIElements/Button'
import SignalWaveGraphic from '@components/UIElements/SignalWaveGraphic'
import { LENSTUBE_APP_NAME } from '@lenstube/constants'
import { Trans } from '@lingui/macro'
import Link from 'next/link'
import React from 'react'
Expand All @@ -20,11 +19,16 @@ const GitcoinAlert = () => {
</div>
<div className="flex w-full flex-1 flex-wrap items-center justify-between gap-y-3 dark:text-gray-100">
<p className="md:text-md text-sm lg:text-lg">
Support {LENSTUBE_APP_NAME} on{' '}
<span className="font-medium">Gitcoin Grants</span> Round 18
<Trans>Support Lenstube on</Trans>{' '}
<span className="font-medium">
<Trans>Gitcoin Grants</Trans>
</span>{' '}
<Trans>Round 18</Trans>
</p>
<Link href="/gitcoin" target="_blank">
<Button>Contribute Now</Button>
<Button>
<Trans>Contribute Now</Trans>
</Button>
</Link>
</div>
</div>
Expand Down
Loading

0 comments on commit c462791

Please sign in to comment.