'use client'; import { motion } from 'framer-motion'; import ToolCard from './ToolCard'; import { tools } from '@/lib/tools'; export default function ToolsGrid() { return (
{/* Section heading */}

Available Tools

Explore our collection of carefully crafted tools designed to boost your productivity and creativity

{/* Tools grid */}
{tools.map((tool, index) => { const Icon = tool.icon; return ( } url={tool.href} badges={tool.badges} index={index} /> ); })}
); }