Spaces:
Build error
Build error
| export default function Services() { | |
| const services = [ | |
| { | |
| title: 'Desenvolvimento Web', | |
| description: 'Criação de sites responsivos e modernos com as melhores tecnologias.', | |
| }, | |
| { | |
| title: 'Aplicativos Mobile', | |
| description: 'Desenvolvimento de aplicativos para iOS e Android com performance otimizada.', | |
| }, | |
| { | |
| title: 'Consultoria em TI', | |
| description: 'Assessoria especializada para otimizar seus processos tecnológicos.', | |
| }, | |
| ]; | |
| return ( | |
| <section className="py-16 bg-white"> | |
| <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <h2 className="text-3xl font-bold text-primary text-center mb-12">Nossos Serviços</h2> | |
| <div className="grid md:grid-cols-3 gap-8"> | |
| {services.map((service, index) => ( | |
| <div key={index} className="bg-secondary p-6 rounded-lg shadow-md"> | |
| <h3 className="text-xl font-semibold text-primary mb-3">{service.title}</h3> | |
| <p className="text-gray-600">{service.description}</p> | |
| </div> | |
| ))} | |
| </div> | |
| </div> | |
| </section> | |
| ); | |
| } |