uppy/docs/quick-start.mdx

58 lines
1.6 KiB
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
sidebar_position: 1
---
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import UppyCdnExample from '/src/components/UppyCdnExample';
import { QuickStartLinks } from '../src/components/QuickStartLinks/QuickStartLinks.tsx';
# Quick start
Uppy is a sleek, modular JavaScript file uploader that integrates seamlessly
with any application. Its fast, has a comprehensible API and lets you worry
about more important problems than building a file uploader.
:::tip
You can take Uppy for a walk inside StackBlitz with a
[minimal drag & drop](https://stackblitz.com/edit/vitejs-vite-yzbujq?file=main.js/g)
experience or a
[full featured dashboard](https://stackblitz.com/edit/vitejs-vite-zaqyaf?file=main.js).
:::
<QuickStartLinks
items={[
{
name: 'I want a full featured, extendable UI',
description: 'Learn more about the Dashboard',
link: '/docs/dashboard',
},
{
name: 'I want a minimal drag & drop UI',
description: 'We have a lightweight plugin for that',
link: '/docs/drag-drop',
},
{
name: 'Which uploader do I need?',
description: 'Choosing the uploader you need',
link: '/docs/guides/choosing-uploader',
},
{
name: 'I want to add files from remote sources',
description: 'Such as Google Drive, Dropbox, Instagram',
link: '/docs/companion',
},
{
name: 'Id like a project example',
description: 'Try out one of our extensive example projects',
link: 'https://github.com/transloadit/uppy/tree/main/examples',
},
{
name: 'I have a question',
description: 'Our community forum is there to help',
link: 'https://community.transloadit.com/',
},
]}
/>