// Import ======================================================================================================================== import App from '@/layouts/aia/app-layout'; // import '/data/www/aia-official-en-main/www/css/pages/contact-us.css'; import Button from '@/components/aia/button'; import { useEffect, useRef } from 'react'; import { useForm } from '@inertiajs/react'; import SectionNavigation from '@/components/aia/section-navigation'; import PageMeta from '@/components/aia/page-meta'; import { aboutAIA } from '@vendor-web/js/about-aia.js' import type { TimelineData } from '@/types'; interface AboutProps { timeline: TimelineData; } export default function About({ timeline }: AboutProps) { const elementRef = useRef(null); useEffect(() => { if (elementRef.current) { aboutAIA(); } }, [timeline]); return ( } pageMeta={ } >

Our Story

At the heart of Taiwan's AI evolution stands the Taiwan AI Academy (AIA), a catalyst for transformation built upon the nation's exceptional technological prowess and vibrant innovation landscape. Founded in March 2017 by the esteemed Dr. James C. Liao, Dr. H.T. Kung, and the late Dr. Sheng-Wei Chen, AIA emerged from a critical need: to harness AI for solving complex manufacturing challenges. This pivotal initiative underscored the urgent necessity for nurturing AI talent, leading to the establishment of the Taiwan AI Academy Foundation.

Fostering a Thriving AI ecosystem in Taiwan

Vision​

Empowering Taiwan as a Global AI Hub

We envision Taiwan as a globally recognized epicenter of AI innovation, driving ethical advancements that elevate industrial competitiveness and foster societal well-being. Through open collaboration and impactful research, we are committed to building an inclusive future—AI for All, All in AI.

Fostering a Thriving AI ecosystem in Taiwan

Mission​​

Ecosystem Architect

To forge strategic alliances between industry, government, academia, and research institutions, cultivating a dynamic and interconnected AI ecosystem.

Transformation Accelerator

To expedite AI-driven transformation within Taiwanese industries by establishing deep-rooted, trusted partnerships and championing responsible, practical AI solutions.

Societal Impact Leader

To amplify societal value through strategic initiatives and dialogues that ensure AI development positively impacts all communities.

Global Talent Nexus

To unite leading global AI minds and experts, enhancing Taiwan's AI capabilities and fostering robust international collaborations.

Taiwan AI Academy & Global AI Breakthroughs: A Parallel Evolution

AI is transforming our world, and Taiwan AI Academy is at the heart of that transformation. This timeline is an invitation to explore the intertwined stories of global AI breakthroughs and our Academy's growth. Discover how we're building a future where innovation and knowledge converge, and be part of the story.

Keep Scrolling

{timeline.groups.map((group, groupIndex) => (

{group.title} {group.subtitle && ':'}
{group.subtitle}

    {group.years.map((year, yearIndex) => (
  1. {year.year}

      {year.items.map((item, itemIndex) => (
    1. {item.title}
    2. ))}
  2. ))}
))}
); }