From ca1c447ccc77c6f9cf81be5380c8908848cff227 Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Tue, 7 Jan 2025 03:12:48 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20mass=20changes=20in=20t?= =?UTF-8?q?he=20ui?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/home/ToolsShowcase.tsx | 37 ++++++++++++++++----------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/src/components/home/ToolsShowcase.tsx b/src/components/home/ToolsShowcase.tsx index 861cbc3a..152b4016 100644 --- a/src/components/home/ToolsShowcase.tsx +++ b/src/components/home/ToolsShowcase.tsx @@ -2,12 +2,12 @@ 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: "from-blue-500 to-blue-400" }, + { name: "Penetration Testing", icon: Shield, color: "from-green-500 to-green-400" }, + { name: "Wireless Security", icon: Wifi, color: "from-purple-500 to-purple-400" }, + { name: "Cryptography", icon: Lock, color: "from-red-500 to-red-400" }, + { name: "Forensics", icon: Database, color: "from-yellow-500 to-yellow-400" }, + { name: "Exploitation", icon: Terminal, color: "from-pink-500 to-pink-400" }, ]; export function ToolsShowcase() { @@ -15,15 +15,17 @@ export function ToolsShowcase() {
{/* Header Section */} -
-

Security Tools Suite

+
+

+ Security Tools Suite +

- A comprehensive toolkit tailored for security professionals. + A comprehensive toolkit tailored for security professionals. Explore our powerful tools designed to safeguard and analyze your digital presence.

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

{tool.name}

+

+ {tool.name} +

+

+ Explore cutting-edge features for {tool.name.toLowerCase()}. +

))}