feat: add Starter template menu in homepage (#884)

* added icons and component

* updated unocss to add dynamic icons

* removed temp logs

* updated readme
This commit is contained in:
Anirban Kar
2024-12-24 22:37:28 +05:30
committed by GitHub
parent 8185fd56ca
commit fc4f89f806
21 changed files with 214 additions and 52 deletions

8
app/types/template.ts Normal file
View File

@@ -0,0 +1,8 @@
export interface Template {
name: string;
label: string;
description: string;
githubRepo: string;
tags?: string[];
icon?: string;
}