-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
import React from 'react' | ||
import { useTranslation } from 'react-i18next' | ||
|
||
export default function ComingSoonCard() { | ||
const { t } = useTranslation() | ||
return ( | ||
<> | ||
<div className="rounded-lg bg-white-100 shadow-xl dark:bg-black-200 min-w-full"> | ||
<div className="flex min-w-full"> | ||
<div className="px-6 py-5 min-w-full items-center flex justify-between"> | ||
<div className='flex-col'> | ||
<div className="min-w-full rounded-lg bg-white-100 shadow-xl dark:bg-black-200"> | ||
<div className="flex min-w-full"> | ||
<div className="flex min-w-full items-center justify-between px-6 py-5"> | ||
<div className="flex-col"> | ||
<p className="text-base font-medium leading-none text-black-200 dark:text-gray-100"> | ||
🦏 Está chegando a hora! | ||
🦏 {t('comming_soon.timeHasCome')} | ||
</p> | ||
<p className="pt-2 text-xs leading-5 text-gray-500 dark:text-gray-400"> | ||
Estamos finalizando os últimos preparativos para o evento. Volte para conferir em breve! | ||
{t('comming_soon.preparingEvent')} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters