Skip to content

Commit 9dbacd6

Browse files
committed
fix: remove wording redundancy
1 parent 4042841 commit 9dbacd6

4 files changed

Lines changed: 6 additions & 14 deletions

File tree

public/i18n/en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"card2Title": "Not only for web developers.",
2121
"card2Body": "Product, QA, design, infrastructure, and students all have a clear place in the room and in the conversation.",
2222
"card3Eyebrow": "Sustainable",
23-
"card3Title": "Sponsors fund better events, not bloat.",
24-
"card3Body": "The community holds up best when the focus stays on useful, consistent, well-run gatherings."
23+
"card3Title": "Community, Patreon, and sponsorship.",
24+
"card3Body": "Our events are sustained by the community itself—through our Patreons and sponsors from the local tech scene."
2525
},
2626
"sponsorship": {
2727
"description1": "WebDevTalks is a community of development and technology that began over 10 years ago with the aim of bringing developers closer to various topics within the field of software development, web, mobile, IoT, project management, design, and more.",

public/i18n/es.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"subtitle": "Charlas y networking para Colima"
1010
},
1111
"homePage": {
12-
"eyebrow": "Comunidad tech de Colima",
1312
"headline": "Charlas, networking y más.",
1413
"description": "Web Dev Talks conecta a desarrolladores, diseñadores, PMs, QA y estudiantes a través de eventos prácticos y una comunidad tech local más fuerte.",
1514
"communityLabel": "Somos comunidad",
@@ -20,8 +19,8 @@
2019
"card2Title": "No es solo para desarrolladores web.",
2120
"card2Body": "Producto, QA, diseño, infraestructura y estudiantes tienen un lugar claro tanto en el evento como en la conversación.",
2221
"card3Eyebrow": "Sostenible",
23-
"card3Title": "Los patrocinadores financian mejores eventos, no relleno.",
24-
"card3Body": "La comunidad se sostiene mejor cuando el enfoque está en encuentros útiles, consistentes y bien ejecutados."
22+
"card3Title": "Comunidad, Patreon y patrocinio.",
23+
"card3Body": "Todos nuestros eventos son sostenidos por la propia comunidad, a través de nuestros patreons y de los patrocinadores del área tech local."
2524
},
2625
"sponsorship": {
2726
"description1": "WebDevTalks(WDT) es una comunidad de desarrollo y tecnología que inició hace más de 10 años con la finalidad de acercar a desarrolladores, diseñadores, managers, product owners, testers y cualquier profesional con una carrera relacionada a IT a diversos temas dentro del área del desarrollo de software web, móvil, IoT, gestión de proyectos, testing, infraestructura, diseño y más.",

src/CodeOfConduct.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,10 +165,7 @@ function CodeOfConduct() {
165165
: 'border-black/8 bg-white/72 text-slate-800'
166166
}`}
167167
>
168-
<div className="text-sm font-semibold uppercase tracking-widest opacity-70">
169-
{section.id.replace(/-/g, ' ')}
170-
</div>
171-
<div className="mt-2 text-xl font-bold tracking-tight">{section.title}</div>
168+
<div className="text-xl font-bold tracking-tight">{section.title}</div>
172169
</button>
173170
))}
174171
</div>

src/Home.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { type ReactElement } from 'react'
2-
import { ArrowRight, Sparkles } from 'lucide-react'
2+
import { ArrowRight } from 'lucide-react'
33
import { useTranslation } from 'react-i18next'
44
import { Link } from 'react-router-dom'
55
import SiteShell from './components/SiteShell'
@@ -19,10 +19,6 @@ const Home = (): ReactElement => {
1919
<Card className="relative overflow-hidden rounded-3xl px-6 py-8 md:px-10 md:py-12">
2020
<div className="grid items-center gap-10 lg:grid-cols-2">
2121
<div className="grid gap-5 md:gap-7">
22-
<span className="inline-flex items-center gap-2 rounded-full border border-yellow-300/40 bg-yellow-300/10 px-3 py-1.5 text-[0.82rem] font-bold uppercase tracking-[0.08em] text-sky-600">
23-
<Sparkles className="h-4 w-4" />
24-
{t('homePage.eyebrow')}
25-
</span>
2622
<div className="grid gap-5 md:gap-7">
2723
<h1 className="text-balance text-4xl font-bold leading-none tracking-tight text-brand md:text-5xl lg:text-6xl">
2824
{t('homePage.headline')}

0 commit comments

Comments
 (0)