astro/packages/create-astro/src/templates.ts
2022-07-07 11:05:59 -07:00

22 lines
298 B
TypeScript

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',
},
];