bolt.new-any-llm/app/types/template.ts
Anirban Kar fc4f89f806
Some checks are pending
Update Stable Branch / prepare-release (push) Waiting to run
feat: add Starter template menu in homepage (#884)
* added icons and component

* updated unocss to add dynamic icons

* removed temp logs

* updated readme
2024-12-24 22:37:28 +05:30

9 lines
144 B
TypeScript

export interface Template {
name: string;
label: string;
description: string;
githubRepo: string;
tags?: string[];
icon?: string;
}