import React from "react"; import Link from "next/link"; import { Cpu, Database, Cloud, Shield, Users, TrendingUp } from "lucide-react"; import { Button } from "@/components/button"; export const metadata = { title: "Services", description: "Sample everything that Techaro has to offer", }; const ServiceCard = ({ icon: Icon, title, description, }: { icon: any; title: string; description: string; }) => (

{title}

{description}

); const ServicesPage = () => { const services = [ { icon: Cpu, title: "AI and Machine Learning", description: "Leverage cutting-edge AI technologies to automate processes, gain insights, and drive innovation in your business.", }, { icon: Database, title: "Data Analytics", description: "Transform your raw data into actionable insights with our advanced analytics solutions.", }, { icon: Cloud, title: "Cloud Migration", description: "Seamlessly transition your infrastructure and applications to the cloud for improved scalability and efficiency.", }, { icon: Shield, title: "Cybersecurity", description: "Protect your digital assets with our comprehensive cybersecurity services and solutions.", }, { icon: Users, title: "Digital Transformation", description: "Modernize your business processes and customer experiences with our digital transformation strategies.", }, { icon: TrendingUp, title: "IT Strategy Consulting", description: "Align your technology investments with your business goals to maximize ROI and drive growth.", }, ]; return (

Our Services

Comprehensive IT Solutions for Canadian Businesses

At Techaro Computing Canada, we offer a wide range of services to help your business thrive in the digital age.

{services.map((service, index) => ( ))}
); }; export default ServicesPage;