diff --git a/app/services/page.tsx b/app/services/page.tsx index 20bc13f..3d90d4a 100644 --- a/app/services/page.tsx +++ b/app/services/page.tsx @@ -8,10 +8,12 @@ import {CodeIcon} from '@/components/icons/CodeIcon' import {ShieldIcon} from '@/components/icons/ShieldIcon' import {EmailIcon} from '@/components/icons/EmailIcon' import {RocketIcon} from '@/components/icons/RocketIcon' +import {ShoppingBagIcon} from '@/components/icons/ShoppingBagIcon' export const metadata = { title: 'Services - Ryan Freeman', - description: 'Whether you need a WordPress website, React app, AWS support or odd coding jobs, I\'m here to help. As an experienced software engineer, I produce high-quality software that will deliver immediate value for you and your customers.' + description: 'Whether you need a WordPress website, React app, AWS support or odd coding jobs, I\'m here to help. ' + + 'As an experienced software engineer, I produce high-quality software that will deliver immediate value for you and your customers.' } type Services = { @@ -32,7 +34,7 @@ const iconStyles = ` group-hover:stroke-indigo-500 ` -export default async function Services() { +export default function Services() { const services: Services[] = [ { title: 'AWS', @@ -44,6 +46,11 @@ export default async function Services() { description: 'Not all database technologies are the same, I\'ll help you choose the right database for your use case.', icon: () => }, + { + 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: () => + }, { title: 'WordPress', description: 'WordPress is the de-facto software for building SEO-friendly websites, together we can achieve top rankings in Google search results.', diff --git a/components/icons/ShoppingBagIcon.tsx b/components/icons/ShoppingBagIcon.tsx new file mode 100644 index 0000000..78832b8 --- /dev/null +++ b/components/icons/ShoppingBagIcon.tsx @@ -0,0 +1,11 @@ +import {Props} from '@/types' + +export function ShoppingBagIcon(props: Props) { + return ( + + + + ) +} \ No newline at end of file