import { motion } from "framer-motion"; import { SERVICES } from "../constants"; const Services = () => { return (

My Services

Helping startups and businesses leverage AI for growth and efficiency.

{SERVICES.map((service, index) => { const Icon = service.icon; return (

{service.title}

{service.description}

); })}
); }; export default Services;