Merge pull request #3 from ASOwnerYT/claude/practical-curie

Add AI Solutions service card and update settings
This commit was merged in pull request #3.
This commit is contained in:
ASOwnerYT
2026-04-02 10:21:50 +13:00
committed by GitHub
+9 -2
View File
@@ -1,7 +1,7 @@
"use client" "use client"
import { useRef, useState } from "react" import { useRef, useState } from "react"
import { Globe, Cloud, Wrench, ArrowUpRight } from "lucide-react" import { Globe, Cloud, Wrench, ArrowUpRight, Bot } from "lucide-react"
const services = [ const services = [
{ {
@@ -24,6 +24,13 @@ const services = [
description: "Our tech experts can help you with all of your I.T problems, from emails and cloud to printers and full computer repairs.", description: "Our tech experts can help you with all of your I.T problems, from emails and cloud to printers and full computer repairs.",
features: ["Email Setup", "Cloud Solutions", "Printer Support", "Computer Repairs", "Network Setup", "Remote Support"], features: ["Email Setup", "Cloud Solutions", "Printer Support", "Computer Repairs", "Network Setup", "Remote Support"],
number: "03" number: "03"
},
{
icon: Bot,
title: "AI Solutions",
description: "Harness the power of artificial intelligence for your business — from intelligent chatbots and automation to custom AI integrations that save time and boost productivity.",
features: ["AI Chatbots", "Workflow Automation", "AI Integrations", "Custom Agents", "Document AI", "Consulting"],
number: "04"
} }
] ]
@@ -131,7 +138,7 @@ export function Services() {
</div> </div>
{/* Services Grid */} {/* Services Grid */}
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-6"> <div className="grid md:grid-cols-2 gap-6">
{services.map((service, index) => ( {services.map((service, index) => (
<ServiceCard key={service.title} service={service} index={index} /> <ServiceCard key={service.title} service={service} index={index} />
))} ))}