From d82fb3b552d20a279efdd9408042183cfa02fb48 Mon Sep 17 00:00:00 2001 From: schererleander Date: Thu, 25 Dec 2025 23:33:25 +0000 Subject: initial commit --- components/tools-grid.tsx | 56 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 components/tools-grid.tsx (limited to 'components/tools-grid.tsx') diff --git a/components/tools-grid.tsx b/components/tools-grid.tsx new file mode 100644 index 0000000..b0cdfa6 --- /dev/null +++ b/components/tools-grid.tsx @@ -0,0 +1,56 @@ +import { Card } from "@/components/ui/card"; +import { GitGraph, Coffee, Terminal, Box, Snowflake, Code } from 'lucide-react'; + +const tools = [ + { + name: 'Git', + icon: GitGraph, + color: 'group-hover:text-[#F05032]' + }, + { + name: 'Java', + icon: Coffee, + color: 'group-hover:text-[#5382a1]' + }, + { + name: 'Python', + icon: Code, + color: 'group-hover:text-[#FFE873]' + }, + { + name: 'Nix', + icon: Snowflake, + color: 'group-hover:text-[#5277C3]' + }, + { + name: 'Docker', + icon: Box, + color: 'group-hover:text-[#2496ED]' + }, + { + name: 'Linux', + icon: Terminal, + color: 'group-hover:text-[#FCC624]' + }, +]; + +export function ToolsGrid() { + return ( +
+ {tools.map((tool) => ( + + + + {tool.name} + + + ))} +
+ ); +} -- cgit v1.3.1