docs: add project templates info

This commit is contained in:
vgcman16 2025-06-05 20:12:35 -05:00
parent 7ae777aa29
commit 06ddeeb16f
4 changed files with 35 additions and 0 deletions

View File

@ -111,6 +111,7 @@ project, please check the [project management guide](./PROJECT.md) to get starte
- **Guided Setup Wizard** for Supabase and Firebase connections - **Guided Setup Wizard** for Supabase and Firebase connections
- **Import Figma designs** to generate starter UI code. - **Import Figma designs** to generate starter UI code.
- **Mobile starter templates** for React Native and Expo with [QR-code previews](docs/docs/mobile-preview.md) via Expo Go. - **Mobile starter templates** for React Native and Expo with [QR-code previews](docs/docs/mobile-preview.md) via Expo Go.
- **Project templates** to kickstart your app with examples like a Blog, SaaS dashboard, or Ecommerce site. ([learn more](docs/docs/project-templates.md))
## Setup ## Setup

View File

@ -137,4 +137,28 @@ export const STARTER_TEMPLATES: Template[] = [
tags: ['angular', 'typescript', 'frontend', 'spa'], tags: ['angular', 'typescript', 'frontend', 'spa'],
icon: 'i-bolt:angular', icon: 'i-bolt:angular',
}, },
{
name: 'Blog',
label: 'Blog Template',
description: 'Basic blog starter to quickly publish articles',
githubRepo: 'xKevIsDev/bolt-blog-template',
tags: ['blog', 'content'],
icon: 'i-bolt:stars',
},
{
name: 'SaaS Dashboard',
label: 'SaaS Dashboard',
description: 'Starter dashboard layout for SaaS products',
githubRepo: 'xKevIsDev/bolt-saas-template',
tags: ['saas', 'dashboard'],
icon: 'i-bolt:stars',
},
{
name: 'Ecommerce',
label: 'Ecommerce Site',
description: 'Template for setting up an online store',
githubRepo: 'xKevIsDev/bolt-ecommerce-template',
tags: ['ecommerce', 'shop'],
icon: 'i-bolt:stars',
},
]; ];

View File

@ -44,6 +44,7 @@ Also [this pinned post in our community](https://thinktank.ottomator.ai/t/videos
- **One-click deployment** to **Netlify**, **Vercel**, or **Cloudflare Pages**. - **One-click deployment** to **Netlify**, **Vercel**, or **Cloudflare Pages**.
- **Import Figma designs** to bootstrap your UI code. - **Import Figma designs** to bootstrap your UI code.
- **Mobile starter templates** for React Native and Expo with [QR-code preview using Expo Go](mobile-preview.md). - **Mobile starter templates** for React Native and Expo with [QR-code preview using Expo Go](mobile-preview.md).
- **Project templates** to kickstart your app with examples like a Blog, SaaS dashboard, or Ecommerce site. ([learn more](project-templates.md))
--- ---

View File

@ -0,0 +1,9 @@
# Project Templates
bolt.diy lets you jumpstart new projects by cloning predefined templates. From the homepage choose **Start with template** and pick a starting point such as:
- **Blog**
- **SaaS dashboard**
- **Ecommerce site**
Once selected, bolt.diy imports the template files so you can immediately begin customizing and building your application.