Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/constants/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
{
Expand Down
2 changes: 1 addition & 1 deletion src/services/prompt.services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const promptProjectKind = async (): Promise<ProjectKind> => {
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'
},
Expand Down