import { faArrowRight, faXmark } from '@fortawesome/free-solid-svg-icons' import { ActionButton } from '../../components/ActionButton' import { onboardingPaths, useDismiss, useNextClick } from '.' export default function Introduction() { const dismiss = useDismiss() const next = useNextClick(onboardingPaths.UNITS) return (

Welcome to the KittyCAD Modeling App

A browser-first, GPU-streaming hardware design tool that lets you edit visually, with code, or both.

Powered by the first API created for anyone to build hardware design tools.

Dismiss Get Started
) }