aboutsummaryrefslogtreecommitdiff
path: root/components/tools-grid.tsx
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-12-25 23:33:25 +0000
committerschererleander <leander@schererleander.de>2025-12-25 23:33:25 +0000
commitd82fb3b552d20a279efdd9408042183cfa02fb48 (patch)
tree4ffe818e591e54da71f7592506c873abf0d9d481 /components/tools-grid.tsx
parentd7edbf05ab0e90eedcb99e4462e3a61793b2eff9 (diff)
initial commit
Diffstat (limited to 'components/tools-grid.tsx')
-rw-r--r--components/tools-grid.tsx56
1 files changed, 56 insertions, 0 deletions
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 (
+ <div className="grid grid-cols-3 md:grid-cols-6 gap-4 w-full max-w-4xl mx-auto">
+ {tools.map((tool) => (
+ <Card
+ key={tool.name}
+ className="group flex flex-col items-center justify-center gap-2 p-4 bg-card/50 hover:bg-card/80 transition-all duration-300 shadow-none"
+ >
+ <tool.icon
+ className={`w-6 h-6 text-muted-foreground transition-colors duration-300 ${tool.color}`}
+ strokeWidth={1.5}
+ />
+ <span className="text-xs font-medium text-muted-foreground/60 group-hover:text-muted-foreground transition-colors">
+ {tool.name}
+ </span>
+ </Card>
+ ))}
+ </div>
+ );
+}