2025-11-07 11:26:19 +01:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { motion } from 'framer-motion';
|
|
|
|
|
|
|
|
|
|
export default function Logo({ className = '', size = 120 }: { className?: string; size?: number }) {
|
|
|
|
|
return (
|
|
|
|
|
<motion.svg
|
|
|
|
|
width={size}
|
|
|
|
|
height={size}
|
|
|
|
|
viewBox="0 0 200 200"
|
|
|
|
|
fill="none"
|
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
|
className={className}
|
2025-11-09 15:54:15 +01:00
|
|
|
initial={{ opacity: 0, scale: 0.9 }}
|
|
|
|
|
animate={{ opacity: 1, scale: 1 }}
|
|
|
|
|
transition={{ duration: 0.6, ease: 'easeOut' }}
|
2025-11-07 11:26:19 +01:00
|
|
|
>
|
2025-11-09 15:54:15 +01:00
|
|
|
{/* Background circle */}
|
|
|
|
|
<motion.circle
|
|
|
|
|
cx="100"
|
|
|
|
|
cy="100"
|
|
|
|
|
r="85"
|
|
|
|
|
fill="url(#bgGradient)"
|
|
|
|
|
initial={{ scale: 0 }}
|
|
|
|
|
animate={{ scale: 1 }}
|
|
|
|
|
transition={{ duration: 0.8, ease: 'easeOut' }}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
{/* Wrench icon (Lucide style) */}
|
2025-11-09 15:49:32 +01:00
|
|
|
<motion.g
|
2025-11-09 15:54:15 +01:00
|
|
|
initial={{ opacity: 0, x: -10 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
transition={{ duration: 0.6, delay: 0.3 }}
|
2025-11-07 11:26:19 +01:00
|
|
|
>
|
2025-11-09 15:54:15 +01:00
|
|
|
<path
|
|
|
|
|
d="M75 90L85 80M85 80L95 90M85 80V110M70 110H100"
|
|
|
|
|
stroke="white"
|
|
|
|
|
strokeWidth="6"
|
2025-11-09 15:49:32 +01:00
|
|
|
strokeLinecap="round"
|
2025-11-09 15:54:15 +01:00
|
|
|
strokeLinejoin="round"
|
2025-11-07 11:26:19 +01:00
|
|
|
/>
|
|
|
|
|
</motion.g>
|
|
|
|
|
|
2025-11-09 15:54:15 +01:00
|
|
|
{/* Paintbrush icon (Lucide style) */}
|
2025-11-07 11:26:19 +01:00
|
|
|
<motion.g
|
2025-11-09 15:54:15 +01:00
|
|
|
initial={{ opacity: 0, x: 10 }}
|
|
|
|
|
animate={{ opacity: 1, x: 0 }}
|
|
|
|
|
transition={{ duration: 0.6, delay: 0.5 }}
|
2025-11-07 11:26:19 +01:00
|
|
|
>
|
2025-11-09 15:54:15 +01:00
|
|
|
<path
|
|
|
|
|
d="M115 90V110M115 110L108 125L115 130L122 125L115 110Z"
|
|
|
|
|
stroke="white"
|
2025-11-09 15:49:32 +01:00
|
|
|
strokeWidth="6"
|
|
|
|
|
strokeLinecap="round"
|
2025-11-09 15:54:15 +01:00
|
|
|
strokeLinejoin="round"
|
2025-11-09 15:49:32 +01:00
|
|
|
/>
|
2025-11-09 15:54:15 +01:00
|
|
|
<rect
|
|
|
|
|
x="110"
|
|
|
|
|
y="85"
|
|
|
|
|
width="10"
|
|
|
|
|
height="15"
|
|
|
|
|
rx="2"
|
|
|
|
|
stroke="white"
|
|
|
|
|
strokeWidth="6"
|
|
|
|
|
fill="none"
|
2025-11-07 11:26:19 +01:00
|
|
|
/>
|
|
|
|
|
</motion.g>
|
|
|
|
|
|
|
|
|
|
{/* Gradient definitions */}
|
|
|
|
|
<defs>
|
2025-11-09 15:54:15 +01:00
|
|
|
<linearGradient id="bgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
2025-11-09 15:49:32 +01:00
|
|
|
<stop offset="0%" stopColor="#667eea" />
|
2025-11-09 15:54:15 +01:00
|
|
|
<stop offset="50%" stopColor="#8b5cf6" />
|
2025-11-09 15:49:32 +01:00
|
|
|
<stop offset="100%" stopColor="#06b6d4" />
|
|
|
|
|
</linearGradient>
|
2025-11-07 11:26:19 +01:00
|
|
|
</defs>
|
|
|
|
|
</motion.svg>
|
|
|
|
|
);
|
|
|
|
|
}
|