From 38541d16359f2c401feb3bac3c460eb5aa66912d Mon Sep 17 00:00:00 2001 From: highperfocused Date: Thu, 1 Jan 2026 20:28:50 +0100 Subject: [PATCH] fix: update feature icons and descriptions for clarity on Index page --- src/pages/Index.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx index 06f2569..fb16a26 100644 --- a/src/pages/Index.tsx +++ b/src/pages/Index.tsx @@ -2,7 +2,7 @@ import { useSeoMeta } from '@unhead/react'; import { useState } from 'react'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; -import { CheckCircle2, Copy, Server, Zap, Shield, Globe } from 'lucide-react'; +import { CheckCircle2, Copy, Server, Gift, Users, Globe } from 'lucide-react'; import { useToast } from '@/hooks/useToast'; import { LoginArea } from '@/components/auth/LoginArea'; @@ -36,14 +36,14 @@ const Index = () => { const features = [ { - icon: Zap, - title: 'Lightning Fast', - description: 'Optimized for speed with low-latency connections', + icon: Gift, + title: 'Free', + description: 'No cost to use - accessible for everyone', }, { - icon: Shield, - title: 'Reliable & Secure', - description: 'Always online with enterprise-grade security', + icon: Users, + title: 'Community driven', + description: 'Built and maintained by the Nostr community', }, { icon: Globe,