'use client'; import { motion } from 'framer-motion'; import ToolCard from './ToolCard'; const tools = [ { title: 'Vert', description: 'Privacy-focused file converter that processes images, audio, and documents locally on your device. No file size limits, completely open source.', url: 'https://vert.kit.pivoine.art', gradient: 'gradient-purple-blue', icon: ( ), }, { title: 'Paint', description: 'An advanced image editor running in your browser. Edit photos, create graphics, and more.', url: 'https://paint.kit.pivoine.art', gradient: 'gradient-cyan-purple', icon: ( ), }, ]; 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) => ( ))} {/* Coming soon hint */} More tools coming soon... ); }
Explore our collection of carefully crafted tools designed to boost your productivity and creativity.
More tools coming soon...