import { APP_NAME } from '@src/lib/constants' import { isDesktop } from '@src/lib/isDesktop' import { Themes, getSystemTheme } from '@src/lib/theme' import { useSettings } from '@src/lib/singletons' import { OnboardingButtons, useDemoCode } from '@src/routes/Onboarding/utils' import { ONBOARDING_SUBPATHS } from '@src/lib/onboardingPaths' export default function Introduction() { // Reset the code to the bracket code useDemoCode() const { app: { theme }, } = useSettings() const getLogoTheme = () => theme.current === Themes.Light || (theme.current === Themes.System && getSystemTheme() === Themes.Light) ? '-dark' : '' return (

{APP_NAME} Alpha

Welcome to {APP_NAME}! This is a hardware design tool that lets you edit visually, with code, or both. It's powered by the KittyCAD Design API, the first API created for anyone to build hardware design tools. The 3D view is not running on your computer, but is instead being streamed to you from an instance of our Geometry Engine on a remote GPU as video.

This is an alpha release, so you will encounter bugs and missing features. You can read our{' '} expectations for alpha users here , and please give us feedback on your experience{' '} our Discord ! We are trying to release as early as possible to get feedback from users like you.

As you go through the onboarding, we'll be changing and resetting your code occasionally, so that we can reference specific code features. So hold off on writing production KCL code until you're done with the onboarding 😉

) }