import React from 'react'; import { motion } from 'framer-motion'; import { ArrowRight } from 'lucide-react'; const Hero = () => { return (
{/* Background elements */}

Budujemy ludzką stronę AI

Projektujemy i wdrażamy systemy AI, które pomagają ludziom pracować szybciej, mądrzej i spokojniej — od automatyzacji po multiagentowe platformy produktowe.

{/* Abstract SVG Visualization */}
{/* Central Human Node */} {/* Agent Nodes & Connections */} {[0, 60, 120, 180, 240, 300].map((angle, i) => { const x = 200 + 120 * Math.cos((angle * Math.PI) / 180); const y = 200 + 120 * Math.sin((angle * Math.PI) / 180); return ( {/* Small outer nodes */} ); })} {/* Orbiting particles */} {/* Glass decoration */}
); }; export default Hero;