diff --git a/src/constants/templates.ts b/src/constants/templates.ts index 8a850f28..713f3f6c 100644 --- a/src/constants/templates.ts +++ b/src/constants/templates.ts @@ -2,7 +2,7 @@ import type {Template} from '../types/template'; const APP_DESCRIPTION_STARTER = 'Barebones scaffolding for your new app'; const APP_DESCRIPTION_EXAMPLE = - 'An example featuring authentication, data persistence, and image storage'; + 'A demo app showcasing authentication, data persistence, and image handling.'; export const TEMPLATES: Template[] = [ { diff --git a/src/services/prompt.services.ts b/src/services/prompt.services.ts index 9a5b8dd5..8f0fb5f9 100644 --- a/src/services/prompt.services.ts +++ b/src/services/prompt.services.ts @@ -117,7 +117,7 @@ export const promptProjectKind = async (): Promise => { message: 'What kind of project are you starting?', choices: [ { - title: `Static website or blog`, + title: `Static website`, value: `website`, description: 'Ideal for blogs, portfolios, and informational websites' },