summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/templates.ts
blob: d379b5579de1bd9f7d4c7261b8d9444d4293c7ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export const TEMPLATES = [
	{
		title: 'Just the basics (recommended)',
		value: 'basics',
	},
	{
		title: 'Blog',
		value: 'blog',
	},
	{
		title: 'Portfolio',
		value: 'portfolio',
	},
	{
		title: 'Documentation Site',
		value: 'docs',
	},
	{
		title: 'Empty project',
		value: 'minimal',
	},
];