import React from 'react'; import { motion } from 'framer-motion'; import { offerings } from '../data/content'; import { ChevronRight } from 'lucide-react'; const OfferingCard = ({ offering, index }: { offering: any, index: number }) => { const Icon = offering.icon; return (

{offering.title}

{offering.description}

); }; const Offerings = () => { return (

Nasza Oferta

Budujemy kompleksowe rozwiązania, które przekładają potencjał sztucznej inteligencji na realne wyniki biznesowe.

{offerings.map((offering, index) => ( ))}
); }; export default Offerings;