Google Stitch by Google Labs turns text prompts, sketches, and screenshots into UI designs, with HTML and Tailwind CSS behind every screen. When a design is ready, you can download its code straight from the canvas. Vercel Drop deploys those files directly to your browser, with no Git, Vercel CLI, or local setup required. Together, they take you from a prompt to a live production URL you can share with anyone.
In this guide, you'll export the HTML for your Stitch screens, deploy them to Vercel with Vercel Drop, choose which page loads at your site's root, and set up automatic deployments as you iterate.
- A Google Stitch project. Stitch is free and requires only a Google account.
- A Vercel account. The free Hobby plan works.
Select a screen on your Stitch canvas and click the code icon (the angle brackets, < >). From the code view, download the generated HTML. Repeat for each screen you want to include on your site.
Create a folder on your computer and move the downloaded HTML files into it. If you want a specific screen to load when someone opens your site, rename that file to index.html. If you skip this, Vercel asks you to pick a homepage during deployment instead.
Go to vercel.com/drop and drag the folder onto the page. You can also zip the folder first or select a folder to upload, because Vercel Drop accepts files, folders, and .zip archives.
Choose the Vercel team to deploy to, enter a project name, and select Deploy. Stitch exports are static HTML, so Vercel publishes them as-is with no build step. When the deployment finishes, you get a live URL for your site.
If your folder has no index.html at the top, Vercel asks which page people should see first when they open your site. Pick a screen from the Root (/) menu. Vercel serves every other file at its own path, so a screen exported as pricing.html is available at /pricing.html.
Each drop creates a new Vercel project, so re-exporting from Stitch and dropping again gives you a new project with a new URL. For prototypes and design reviews, that's often fine, and each version stands on its own. If a design graduates into a real project, move the code into a repository, push it to GitHub, GitLab, or Bitbucket, and connect the repository to Vercel. After that, every push deploys automatically, and your URL stays the same.
- Read the Vercel Drop documentation for limitations and details.
- Deploy from Git for automatic deployments on every push.
- Managing deployments to redeploy, inspect, and promote.