Skip to content

Commit 19dab18

Browse files
committed
Update HeroSection texts and i18n stats
Replace the rotating hero words with new copy (Manage, Code, Collaborate, Deploy) and update the stats block to use localized strings (t.landing.stats.features, t.landing.stats.openSource, t.landing.stats.available). Also adjust the displayed stat labels/values (e.g. '10+' -> 'GenAI', '24/7' -> 'Live'). No other structural changes made.
1 parent beba9cd commit 19dab18

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

components/landing/HeroSection.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export function HeroSection({ t }: HeroSectionProps) {
4949
<div className="flex justify-center items-center w-full mb-4">
5050
<h1 className="text-4xl md:text-6xl lg:text-7xl font-bold tracking-tight text-balance animate-fade-in-up flex items-center justify-center gap-3">
5151
<RotatingText
52-
texts={['Think', 'Code', 'Test', 'Ship']}
52+
texts={['Manage', 'Code', 'Collaborate', 'Deploy']}
5353
mainClassName="px-2 sm:px-2 md:px-3 bg-primary text-primary-foreground overflow-hidden py-0.5 sm:py-1 md:py-2 justify-center rounded-lg"
5454
staggerFrom="last"
5555
initial={{ y: "100%" }}
@@ -90,16 +90,16 @@ export function HeroSection({ t }: HeroSectionProps) {
9090
{/* Stats Section */}
9191
<div className="grid grid-cols-1 sm:grid-cols-3 gap-8 pt-16 max-w-2xl mx-auto animate-fade-in-up delay-700">
9292
<div className="text-center">
93-
<div className="text-3xl md:text-4xl font-bold text-primary mb-2">10+</div>
94-
<div className="text-sm text-muted-foreground">Features</div>
93+
<div className="text-3xl md:text-4xl font-bold text-primary mb-2">GenAI</div>
94+
<div className="text-sm text-muted-foreground">{t.landing.stats.features}</div>
9595
</div>
9696
<div className="text-center">
9797
<div className="text-3xl md:text-4xl font-bold text-primary mb-2">100%</div>
98-
<div className="text-sm text-muted-foreground">Open Source</div>
98+
<div className="text-sm text-muted-foreground">{t.landing.stats.openSource}</div>
9999
</div>
100100
<div className="text-center">
101-
<div className="text-3xl md:text-4xl font-bold text-primary mb-2">24/7</div>
102-
<div className="text-sm text-muted-foreground">Available</div>
101+
<div className="text-3xl md:text-4xl font-bold text-primary mb-2">Live</div>
102+
<div className="text-sm text-muted-foreground">{t.landing.stats.available}</div>
103103
</div>
104104
</div>
105105
</div>

0 commit comments

Comments
 (0)