Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot] 2026-04-17 16:56:50 +00:00
parent 5b37e65fb1
commit 5267a57332
5 changed files with 7 additions and 7 deletions

View file

@ -39,7 +39,7 @@ export function LandingFooter() {
<p className="mt-4 text-sm text-muted-foreground max-w-xs">
Seu assistente de IA pessoal no Telegram, gerenciado e em português.
</p>
<Badge className="mt-4 bg-secondary/15 text-secondary hover:bg-secondary/15 border-0 font-semibold">
<Badge className="mt-4 bg-success/15 text-success hover:bg-success/15 border-0 font-semibold">
Feito no Brasil 🇧🇷
</Badge>
</div>

View file

@ -102,7 +102,7 @@ export function PlansSection() {
<Switch checked={yearly} onCheckedChange={setYearly} aria-label="Alternar entre mensal e anual" />
<span className={cn("text-sm font-medium flex items-center gap-2", yearly && "text-foreground", !yearly && "text-muted-foreground")}>
Anual
<Badge className="bg-secondary/15 text-secondary hover:bg-secondary/15 border-0 font-semibold">20% off</Badge>
<Badge className="bg-success/15 text-success hover:bg-success/15 border-0 font-semibold">20% off</Badge>
</span>
</div>
</div>
@ -156,7 +156,7 @@ export function PlansSection() {
<ul className="mt-6 space-y-3 flex-1">
{plan.features.map((f) => (
<li key={f} className="flex items-start gap-2 text-sm">
<Check className="h-4 w-4 text-secondary mt-0.5 flex-shrink-0" aria-hidden />
<Check className="h-4 w-4 text-success mt-0.5 flex-shrink-0" aria-hidden />
<span>{f}</span>
</li>
))}