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
26 changes: 13 additions & 13 deletions 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 =
'A demo app showcasing authentication, data persistence, and image handling.';
'An example showcasing authentication, data persistence, and image handling.';

export const TEMPLATES: Template[] = [
{
Expand All @@ -13,7 +13,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Starter',
type: 'Minimal',
description: 'Barebones scaffolding for your new website',
kind: 'website'
},
Expand All @@ -25,7 +25,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Starter',
type: 'Minimal',
description: APP_DESCRIPTION_STARTER,
kind: 'app'
},
Expand All @@ -37,7 +37,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Example',
type: 'Demo',
description: APP_DESCRIPTION_EXAMPLE,
kind: 'app'
},
Expand All @@ -53,7 +53,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Starter',
type: 'Minimal',
description: APP_DESCRIPTION_STARTER,
kind: 'app'
},
Expand All @@ -69,7 +69,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Example',
type: 'Demo',
description: APP_DESCRIPTION_EXAMPLE,
kind: 'app'
},
Expand All @@ -93,7 +93,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Starter',
type: 'Minimal',
description: APP_DESCRIPTION_STARTER,
kind: 'app'
},
Expand All @@ -105,7 +105,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Example',
type: 'Demo',
description: APP_DESCRIPTION_EXAMPLE,
kind: 'app'
},
Expand All @@ -117,7 +117,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Starter',
type: 'Minimal',
description: APP_DESCRIPTION_STARTER,
kind: 'app'
},
Expand All @@ -129,7 +129,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Example',
type: 'Demo',
description: APP_DESCRIPTION_EXAMPLE,
kind: 'app'
},
Expand All @@ -141,7 +141,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Starter',
type: 'Minimal',
description: APP_DESCRIPTION_STARTER,
kind: 'app'
},
Expand All @@ -153,7 +153,7 @@ export const TEMPLATES: Template[] = [
typeChecking: true
}
],
type: 'Example',
type: 'Demo',
description: APP_DESCRIPTION_EXAMPLE,
kind: 'app'
},
Expand All @@ -165,7 +165,7 @@ export const TEMPLATES: Template[] = [
typeChecking: false
}
],
type: 'Example',
type: 'Demo',
description: APP_DESCRIPTION_EXAMPLE,
kind: 'app'
}
Expand Down
2 changes: 1 addition & 1 deletion src/types/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ export type TemplateFramework =
| 'Vue'
| 'Vanilla JavaScript';

export type TemplateType = 'Starter' | 'Example' | 'Workshop';
export type TemplateType = 'Minimal' | 'Demo' | 'Workshop';