import React from "react"; import { User, Award, Globe } from "lucide-react"; import { Button } from "@/components/button"; import { allAuthors } from "@/.content-collections/generated"; import Image from "next/image"; import Link from "next/link"; import { Metadata } from "next"; export const metadata: Metadata = { title: "About Us", description: "Learn more about the team behind Techaro!", }; const TeamMember = ({ name, role, image, }: { name: string; role: string; image: string; }) => (
{name}

{name}

{role}

); function shuffle(array: any[]) { let currentIndex = array.length; // While there remain elements to shuffle... while (currentIndex != 0) { // Pick a remaining element... let randomIndex = Math.floor(Math.random() * currentIndex); currentIndex--; // And swap it with the current element. [array[currentIndex], array[randomIndex]] = [ array[randomIndex], array[currentIndex], ]; } } const AboutPage = () => { const teamMembers = allAuthors.map((author) => ({ name: author.displayName, role: author.role, image: author.avatarUrl, })); shuffle(teamMembers); return (

About Us

Empowering Canadian Businesses with Innovative Technology

Techaro Computing Canada is at the forefront of digital transformation, helping businesses across the country leverage cutting-edge technology to drive growth and innovation.

Our Mission

Client Focus
We are dedicated to understanding and meeting the unique needs of each client, ensuring their success in the digital landscape.
Innovation
We continuously explore and implement the latest technologies to provide cutting-edge solutions for our clients.
Canadian Focus
We are committed to strengthening the Canadian tech ecosystem and helping local businesses compete on a global scale.

Our Team

{teamMembers.map((member, index) => ( ))}

Ready to Transform Your Business?

Let{"'"}s discuss how Techaro Computing Canada can help you achieve your technology goals.

); }; export default AboutPage;