fix: change tools grid from 4 to 3 columns on xl breakpoint

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-02 12:13:05 +01:00
parent 63b4823315
commit b1e79e1808

View File

@@ -23,7 +23,7 @@ export default function ToolsGrid() {
</div>
{/* Tools grid */}
<div className="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-4">
<div className="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-3 gap-4">
{tools.map((tool, index) => (
<ToolCard
key={tool.href}