From c00685c002c06fcbcf6debf75c3279f47bc1b1f0 Mon Sep 17 00:00:00 2001 From: eshanized Date: Wed, 1 Jan 2025 11:19:51 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20style:=20more=20enhanced=20ui?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/home/ToolsShowcase.tsx | 49 ++++++++++++++++----------- 1 file changed, 30 insertions(+), 19 deletions(-) diff --git a/src/components/home/ToolsShowcase.tsx b/src/components/home/ToolsShowcase.tsx index 5fec925c..5cc15ea2 100644 --- a/src/components/home/ToolsShowcase.tsx +++ b/src/components/home/ToolsShowcase.tsx @@ -1,40 +1,51 @@ -import { motion } from 'framer-motion'; -import { Terminal, Shield, Wifi, Globe, Lock, Database } from 'lucide-react'; +import { motion } from "framer-motion"; +import { Terminal, Shield, Wifi, Globe, Lock, Database } from "lucide-react"; const tools = [ - { name: 'Network Analysis', icon: Globe, color: 'text-blue-500' }, - { name: 'Penetration Testing', icon: Shield, color: 'text-green-500' }, - { name: 'Wireless Security', icon: Wifi, color: 'text-purple-500' }, - { name: 'Cryptography', icon: Lock, color: 'text-red-500' }, - { name: 'Forensics', icon: Database, color: 'text-yellow-500' }, - { name: 'Exploitation', icon: Terminal, color: 'text-pink-500' }, + { name: "Network Analysis", icon: Globe, color: "text-blue-500" }, + { name: "Penetration Testing", icon: Shield, color: "text-green-500" }, + { name: "Wireless Security", icon: Wifi, color: "text-purple-500" }, + { name: "Cryptography", icon: Lock, color: "text-red-500" }, + { name: "Forensics", icon: Database, color: "text-yellow-500" }, + { name: "Exploitation", icon: Terminal, color: "text-pink-500" }, ]; export function ToolsShowcase() { return ( -
+
+ {/* Header Section */}
-

Security Tools Suite

+

Security Tools Suite

- Comprehensive toolkit for security professionals + A comprehensive toolkit tailored for security professionals.

-
+ {/* Tools Grid */} +
{tools.map((tool, index) => ( -
- + {/* Icon Section */} +
+
-

{tool.name}

+ {/* Tool Name */} +

{tool.name}

))}