Skip to content

Commit f024db5

Browse files
committed
Add Nano Banana to tech partner cards and README
1 parent c8f351e commit f024db5

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
</p>
1111

1212
<p align="center">
13+
<img src="https://img.shields.io/badge/Nano%20Banana-AI%20Prototyping-FFD700?style=for-the-badge&logoColor=black" />
1314
<img src="https://img.shields.io/badge/Google-Gemini%20API-4285F4?style=for-the-badge&logo=google&logoColor=white" />
1415
<img src="https://img.shields.io/badge/Google-Antigravity-34A853?style=for-the-badge&logo=google&logoColor=white" />
1516
<img src="https://img.shields.io/badge/Google-Firebase-FFCA28?style=for-the-badge&logo=firebase&logoColor=black" />
@@ -91,7 +92,7 @@ This project is **deeply integrated with the Google ecosystem and ElevenLabs** v
9192
| **Telephony** | Twilio (outbound calls, speech recognition, call recording) |
9293
| **Notifications** | Telegram Bot API (caregiver alerts + assessment reports) |
9394
| **Deployment** | Vultr VPS, PM2 process manager, auto-deploy via GitHub |
94-
| **Dev Tools** | Google Antigravity, Gemini CLI, Claude Code |
95+
| **Dev Tools** | Google Antigravity, Gemini CLI, Claude Code, Nano Banana |
9596

9697
---
9798

@@ -181,7 +182,7 @@ Cron triggers call → Twilio dials elder
181182

182183
**Infrastructure:** Vultr Cloud VPS, PM2, GitHub (auto-deploy)
183184

184-
**Dev Tools:** Google Antigravity, Gemini CLI, Claude Code
185+
**Dev Tools:** Google Antigravity, Gemini CLI, Claude Code, Nano Banana
185186

186187
---
187188

src/components/landing/FeatureGrid.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,16 @@ const techPartners = [
9797
</svg>
9898
),
9999
},
100+
{
101+
name: "Nano Banana",
102+
role: "AI Prototyping Platform",
103+
brandColor: "#FFD700",
104+
logo: (
105+
<svg viewBox="0 0 24 24" className="h-8 w-8" fill="currentColor">
106+
<path d="M12 2C9.5 2 7.5 4.5 6.5 8c-1 3.5-.5 7.5 1 10.5 1 2 2.5 3.5 4.5 3.5s3.5-1.5 4.5-3.5c1.5-3 2-7 1-10.5C16.5 4.5 14.5 2 12 2zm0 2c1.5 0 3 2 3.8 5-.8-.5-2.2-.8-3.8-.8s-3 .3-3.8.8C9 6 10.5 4 12 4z"/>
107+
</svg>
108+
),
109+
},
100110
];
101111

102112
export default function FeatureGrid() {
@@ -123,7 +133,7 @@ export default function FeatureGrid() {
123133
>
124134
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.
125135
</p>
126-
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-5 gap-4">
136+
<div className="grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-6 gap-4">
127137
{techPartners.map((partner, i) => (
128138
<FadeIn key={partner.name} delay={i * 0.08}>
129139
<div

0 commit comments

Comments
 (0)