Skip to content

Commit 72cde30

Browse files
style: update color scheme in "Codando com IA" landing page
- Changed border and background colors from amber to blue for improved visual consistency. - Updated text colors in the final call-to-action and lead form components to match the new color scheme. - Enhanced focus ring colors for input fields to align with the updated design.
1 parent cfae6cf commit 72cde30

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

  • app/routes/_layout-app/_landing-pages/codando-com-ia

app/routes/_layout-app/_landing-pages/codando-com-ia/index.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,13 +1177,13 @@ function Faq() {
11771177
function FinalCta({ actionData }: { actionData: LeadFeedback | undefined }) {
11781178
return (
11791179
<section className="flex justify-center w-full mt-32 mb-24">
1180-
<div className="container rounded-3xl border border-amber-200 dark:border-amber-500/40 bg-amber-500/10 dark:bg-amber-500/10 p-10">
1180+
<div className="container rounded-3xl border border-blue-200 dark:border-blue-500/40 bg-blue-500/10 dark:bg-blue-500/10 p-10">
11811181
<div className="grid gap-8 md:grid-cols-[1.3fr_1fr] items-center">
11821182
<div className="flex flex-col gap-4">
11831183
<h2 className="text-3xl font-lexend text-gray-800 dark:text-white">
11841184
Garanta prioridade no primeiro curso ao vivo da Codante
11851185
</h2>
1186-
<p className="text-sm text-amber-900/80 dark:text-amber-100">
1186+
<p className="text-sm text-blue-900/80 dark:text-blue-100">
11871187
Preencha seus dados e se inscreva. As vagas são limitadas. Temos
11881188
certeza que você vai se surpreender com o curso.
11891189
</p>
@@ -1215,7 +1215,7 @@ function LeadFormCompact({
12151215
<Form
12161216
method="post"
12171217
replace
1218-
className="flex flex-col gap-3 bg-white dark:bg-background-900 rounded-2xl border border-amber-200 dark:border-amber-500/30 p-6 shadow-sm"
1218+
className="flex flex-col gap-3 bg-white dark:bg-background-900 rounded-2xl border border-blue-200 dark:border-blue-500/30 p-6 shadow-sm"
12191219
>
12201220
<label className="flex flex-col text-xs font-semibold text-gray-700 dark:text-gray-300 gap-1">
12211221
Nome
@@ -1230,7 +1230,7 @@ function LeadFormCompact({
12301230
name: event.target.value,
12311231
}))
12321232
}
1233-
className="rounded-lg border border-background-200 dark:border-background-700 bg-transparent px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-amber-500"
1233+
className="rounded-lg border border-background-200 dark:border-background-700 bg-transparent px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"
12341234
/>
12351235
</label>
12361236
<label className="flex flex-col text-xs font-semibold text-gray-700 dark:text-gray-300 gap-1">
@@ -1247,7 +1247,7 @@ function LeadFormCompact({
12471247
phone: event.target.value,
12481248
}))
12491249
}
1250-
className="rounded-lg border border-background-200 dark:border-background-700 bg-transparent px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-amber-500"
1250+
className="rounded-lg border border-background-200 dark:border-background-700 bg-transparent px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"
12511251
/>
12521252
</label>
12531253
<label className="flex flex-col text-xs font-semibold text-gray-700 dark:text-gray-300 gap-1">
@@ -1263,7 +1263,7 @@ function LeadFormCompact({
12631263
email: event.target.value,
12641264
}))
12651265
}
1266-
className="rounded-lg border border-background-200 dark:border-background-700 bg-transparent px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-amber-500"
1266+
className="rounded-lg border border-background-200 dark:border-background-700 bg-transparent px-3 py-2 text-sm focus:outline-none focus:ring-2 focus:ring-blue-500"
12671267
/>
12681268
</label>
12691269
<div className="flex items-center justify-between rounded-lg px-3 py-2">
@@ -1279,7 +1279,7 @@ function LeadFormCompact({
12791279
isCodantePro: event.target.checked,
12801280
}))
12811281
}
1282-
className="h-3.5 w-3.5 rounded border-background-300 text-amber-500 focus:ring-amber-500"
1282+
className="h-3.5 w-3.5 rounded border-background-300 text-blue-500 focus:ring-blue-500"
12831283
/>
12841284
<span>Já sou assinante do Codante PRO</span>
12851285
</label>
@@ -1292,10 +1292,10 @@ function LeadFormCompact({
12921292
disabled={isDisabled}
12931293
aria-disabled={isDisabled}
12941294
aria-busy={isSubmitting}
1295-
className={`inline-flex items-center justify-center gap-2 rounded-lg text-gray-900 font-semibold py-2 text-sm transition-colors ${
1295+
className={`inline-flex items-center justify-center gap-2 rounded-lg text-gray-900 dark:text-white font-semibold py-2 text-sm transition-colors ${
12961296
isDisabled
1297-
? "bg-amber-200 cursor-not-allowed opacity-70"
1298-
: "bg-amber-600 hover:bg-amber-700"
1297+
? "bg-blue-200 cursor-not-allowed opacity-70"
1298+
: "bg-blue-600 hover:bg-blue-700"
12991299
}`}
13001300
>
13011301
{isSubmitting && (

0 commit comments

Comments
 (0)