'use client'; import { motion } from 'framer-motion'; export default function Logo({ className = '', size = 120 }: { className?: string; size?: number }) { return ( {/* Wrench (bottom-left to top-right) */} {/* Wrench handle */} {/* Wrench head (open end) */} {/* Brush (top-left to bottom-right) */} {/* Brush handle */} {/* Brush ferrule (metal part) */} {/* Brush bristles */} {/* Center circle (intersection) */} {/* Gradient definitions */} ); }