diff --git a/app/pages/index.vue b/app/pages/index.vue index d6fa09c..9bed46f 100644 --- a/app/pages/index.vue +++ b/app/pages/index.vue @@ -23,18 +23,19 @@ const templates = [ href: "/templates", available: true, }, + { + title: "Starter", + description: "A minimal Nuxt starter to begin quickly with shadcn-vue.", + icon: Sparkles, + href: "/templates", + available: true, + }, { title: "Dashboard", description: "A flexible dashboard starter for building data-heavy Nuxt interfaces. Coming soon.", icon: Blocks, available: false, }, - { - title: "Starter", - description: "A minimal Nuxt starter to begin quickly with shadcn-vue. Coming soon.", - icon: Sparkles, - available: false, - }, ]; diff --git a/app/pages/templates.vue b/app/pages/templates.vue index 7838149..2ab20d0 100644 --- a/app/pages/templates.vue +++ b/app/pages/templates.vue @@ -35,17 +35,14 @@ const templates: Template[] = [ status: "available", image: { light: "/templates/chat-light.png", dark: "/templates/chat-dark.png" }, }, - { - name: "Dashboard", - description: "A flexible dashboard starter for building data-heavy Nuxt interfaces.", - features: ["Charts and date-picker support", "Multi-column layout", "Light and dark mode"], - status: "coming-soon", - }, { name: "Starter", description: "A minimal Nuxt starter to begin quickly with shadcn-vue.", features: ["Nuxt setup included", "ESLint setup included", "shadcn-vue setup included"], - status: "coming-soon", + preview: "https://starter-template.stackhacker.io", + github: "https://github.com/stackhacker-ui/starter", + status: "available", + image: { light: "/templates/starter-light.png", dark: "/templates/starter-dark.png" }, }, { name: "Landing", @@ -53,6 +50,12 @@ const templates: Template[] = [ features: ["Features, pricing, and FAQ sections", "Nuxt Content support", "Responsive layout"], status: "coming-soon", }, + { + name: "Dashboard", + description: "A flexible dashboard starter for building data-heavy Nuxt interfaces.", + features: ["Charts and date-picker support", "Multi-column layout", "Light and dark mode"], + status: "coming-soon", + }, ]; @@ -75,11 +78,11 @@ const templates: Template[] = [