diff --git a/app/services/page.tsx b/app/services/page.tsx index f270ea9..e4d4500 100644 --- a/app/services/page.tsx +++ b/app/services/page.tsx @@ -61,42 +61,42 @@ export default function Services() { { title: 'AWS', description: 'As an AWS Certified Cloud Practitioner I can advise on and implement reliable, cost-effective cloud solutions for your business.', - icon: () => + icon: (props) => }, { title: 'Databases', description: 'Not all database technologies are the same, I\'ll help you choose the right database for your use case.', - icon: () => + icon: (props) => }, { title: 'Ecommerce', description: 'From WooCommerce to Shopify, I can assist with setting up and managing your online store, allowing you to focus on growing your sales.', - icon: () => + icon: (props) => }, { title: 'WordPress', description: 'WordPress is the de-facto software for building SEO-friendly websites, together we can achieve top rankings in Google search results.', - icon: () => + icon: (props) => }, { title: 'Frontend', description: 'Using React, I can deliver modern, responsive websites and applications that seamlessly adapt to any screen size.', - icon: () => + icon: (props) => }, { title: 'Backend', description: 'From building APIs to authentication and integrating third-party services, I develop robust backend systems for your business needs.', - icon: () => + icon: (props) => }, { title: 'Domain and hosting', description: 'Whether you’re launching a new website or migrating an existing one, I\'ll ensure your website is fast, secure and always online.', - icon: () => + icon: (props) => }, { title: 'Email', description: 'I\'ll help you establish trust with your clients by using a custom domain for your email that reflects your brand.', - icon: () => + icon: (props) => } ] @@ -112,7 +112,7 @@ export default function Services() { {services.map(({title, description, icon: Icon}) => (

- + {title}

{description}