Skip to content

Commit c8f351e

Browse files
committed
fix: ElevenLabs red brand color, equal height tech partner cards
1 parent 0616b42 commit c8f351e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/components/landing/FeatureGrid.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const techPartners = [
7979
{
8080
name: "ElevenLabs",
8181
role: "Human-like Voice Synthesis",
82-
brandColor: "#000000",
82+
brandColor: "#E63946",
8383
logo: (
8484
<svg viewBox="0 0 24 24" className="h-8 w-8" fill="currentColor">
8585
<rect x="7" y="2" width="3" height="20" rx="1.5"/>
@@ -121,13 +121,13 @@ export default function FeatureGrid() {
121121
className="mx-auto max-w-xl text-center text-sm mb-12"
122122
style={{ color: "var(--text-secondary)" }}
123123
>
124-
Powered by the <span className="font-semibold" style={{ color: "#4285F4" }}>Google</span> ecosystem and <span className="font-semibold" style={{ color: "#000000" }}>ElevenLabs</span> — the same technology behind the world&apos;s most advanced AI products.
124+
Powered by the <span className="font-semibold" style={{ color: "#4285F4" }}>Google</span> ecosystem and <span className="font-semibold" style={{ color: "#E63946" }}>ElevenLabs</span> — the same technology behind the world&apos;s most advanced AI products.
125125
</p>
126126
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-5 gap-4">
127127
{techPartners.map((partner, i) => (
128128
<FadeIn key={partner.name} delay={i * 0.08}>
129129
<div
130-
className="group flex flex-col items-center gap-3 rounded-2xl border-2 p-5 text-center transition-all duration-300 hover:-translate-y-1 hover:shadow-lg"
130+
className="group flex flex-col items-center justify-center gap-3 rounded-2xl border-2 p-5 text-center transition-all duration-300 hover:-translate-y-1 hover:shadow-lg h-full"
131131
style={{
132132
borderColor: partner.brandColor + "30",
133133
backgroundColor: "var(--card-bg)",

0 commit comments

Comments
 (0)