diff --git a/src/constants/templates.ts b/src/constants/templates.ts index 36c6837..5d5fedf 100644 --- a/src/constants/templates.ts +++ b/src/constants/templates.ts @@ -1,15 +1,15 @@ import type {Template} from '../types/template'; -const APP_DESCRIPTION_STARTER = 'Opt for a barebones scaffolding to kickstart your app'; +const APP_DESCRIPTION_STARTER = 'Barebones scaffolding for your new app'; const APP_DESCRIPTION_EXAMPLE = - 'Begin with an example app featuring authentication, document storage, and image handling'; + 'An example featuring authentication, data persistence, and image storage'; export const TEMPLATES: Template[] = [ { framework: `Astro`, key: `astro-starter`, type: 'Starter', - description: 'Opt for a barebones scaffolding to kickstart your website', + description: 'Barebones scaffolding for your new website', kind: 'website' }, { @@ -40,6 +40,13 @@ export const TEMPLATES: Template[] = [ description: APP_DESCRIPTION_EXAMPLE, kind: 'app' }, + { + framework: `React`, + key: `react-workshop`, + type: 'Workshop', + description: 'Explore Juno in an interactive workshop', + kind: 'app' + }, { framework: `SvelteKit`, key: `sveltekit-starter`, diff --git a/src/services/prompt.services.ts b/src/services/prompt.services.ts index 1e5552b..2be4eea 100644 --- a/src/services/prompt.services.ts +++ b/src/services/prompt.services.ts @@ -33,7 +33,8 @@ export const promptTemplate = async (projectKind: ProjectKind): Promise