Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 34 additions & 7 deletions app/pages/templates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ interface Template {
}

const templates: Template[] = [
{
name: "Starter",
description: "A minimal Nuxt starter to begin quickly with shadcn-vue.",
features: ["Nuxt setup included", "ESLint setup included", "shadcn-vue setup included"],
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: "Chat",
description: "An open chat app starter for Nuxt with practical patterns you can adapt.",
Expand All @@ -36,13 +45,10 @@ const templates: Template[] = [
image: { light: "/templates/chat-light.png", dark: "/templates/chat-dark.png" },
},
{
name: "Starter",
description: "A minimal Nuxt starter to begin quickly with shadcn-vue.",
features: ["Nuxt setup included", "ESLint setup included", "shadcn-vue setup included"],
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: "Docs",
description: "A documentation template for product guides, references, and content-heavy sites.",
features: ["Content-first structure", "Documentation navigation", "Responsive reading layout"],
status: "coming-soon",
},
{
name: "Landing",
Expand All @@ -53,6 +59,27 @@ const templates: Template[] = [
status: "available",
image: { light: "/templates/landing-light.png", dark: "/templates/landing-dark.png" },
},
{
name: "Portfolio",
description: "A polished portfolio template for projects, writing, and personal profiles.",
features: ["Project showcase", "Profile-first layout", "Responsive sections"],
status: "coming-soon",
},
{
name: "SaaS",
description: "A SaaS marketing template with product sections and conversion-focused pages.",
features: ["Marketing page sections", "Pricing-ready structure", "Responsive layout"],
status: "coming-soon",
},
{
name: "Changelog",
description: "A changelog template for publishing product updates with a focused release feed.",
features: ["Release-focused layout", "GitHub updates integration", "Light and dark previews"],
preview: "https://changelog-template.stackhacker.io",
github: "https://github.com/stackhacker-ui/changelog",
status: "available",
image: { light: "/templates/changelog-light.png", dark: "/templates/changelog-dark.png" },
},
];
</script>

Expand Down
Binary file added public/templates/changelog-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/templates/changelog-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading