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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 Shadcn Nuxt UI Contributors
Copyright (c) 2026 Stackhacker UI Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Shadcn Nuxt UI
# Stackhacker UI

Open-source templates and reusable components for Nuxt with shadcn-vue.

Expand All @@ -19,7 +19,7 @@ This project aims to make shadcn-vue easier to use in Nuxt by providing:
Install an item with the shadcn-vue CLI:

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/lucide-icon.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/lucide-icon.json"
```

## Local development
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Security fixes are applied to the latest version on the `main` branch.

Please use GitHub Private Vulnerability Reporting for this repository:

- https://github.com/shadcn-nuxt-ui/docs/security/advisories/new
- https://github.com/stackhacker-ui/docs/security/advisories/new

If private reporting is unavailable for your account, contact maintainers privately to request an alternate confidential reporting channel. Do not open a public issue for suspected vulnerabilities.

Expand Down
2 changes: 1 addition & 1 deletion app/components/GitHubLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ interface RepoResponse {

const { data } = await useAsyncData<RepoResponse | null>("github-stars", async () => {
try {
return await $fetch<RepoResponse>("https://ungh.cc/repos/shadcn-nuxt-ui/docs", {
return await $fetch<RepoResponse>("https://ungh.cc/repos/stackhacker-ui/docs", {
timeout: 3000,
});
}
Expand Down
8 changes: 4 additions & 4 deletions app/lib/config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const siteConfig = {
name: "Shadcn Nuxt UI",
url: "https://shadcn-nuxt-ui.stackhacker.io",
ogImage: "https://shadcn-nuxt-ui.stackhacker.io/og.jpg",
name: "Stackhacker UI",
url: "https://ui.stackhacker.io",
ogImage: "https://ui.stackhacker.io/og.jpg",
description: "Open-source Nuxt templates and components for the shadcn-vue community.",
links: {
github: "https://github.com/shadcn-nuxt-ui/docs",
github: "https://github.com/stackhacker-ui/docs",
},
navItems: [
{ href: "/docs/getting-started", label: "Docs" },
Expand Down
4 changes: 2 additions & 2 deletions app/pages/templates.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const templates: Template[] = [
name: "Chat",
description: "An open chat app starter for Nuxt with practical patterns you can adapt.",
features: ["GitHub authentication", "Persistent chat history", "Streaming AI responses"],
preview: "https://shadcn-nuxt-ui-chat.stackhacker.io/",
github: "https://github.com/shadcn-nuxt-ui/chat",
preview: "https://chat-template.stackhacker.io",
github: "https://github.com/stackhacker-ui/chat",
status: "available",
image: { light: "/templates/chat-light.png", dark: "/templates/chat-dark.png" },
},
Expand Down
2 changes: 1 addition & 1 deletion components.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"composables": "@/composables"
},
"registries": {
"~/registry/ui": "https://shadcn-nuxt-ui.stackhacker.io/r/{name}.json"
"~/registry/ui": "https://ui.stackhacker.io/r/{name}.json"
}
}
4 changes: 2 additions & 2 deletions content/docs/1.getting-started/1.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description: Open-source Nuxt templates and components for the shadcn-vue commun
category: overview
---

## What is shadcn-nuxt-ui?
## What is stackhacker-ui?

`shadcn-nuxt-ui` is an open-source project for Nuxt developers using shadcn-vue.
`stackhacker-ui` is an open-source project for Nuxt developers using shadcn-vue.

It adds practical templates and reusable components to make implementation easier in real Nuxt projects.

Expand Down
2 changes: 1 addition & 1 deletion content/docs/1.getting-started/2.installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ A Nuxt project with shadcn-vue already configured. If you haven't set up shadcn-
Use the shadcn-vue CLI to add components from this registry:

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/lucide-icon.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/lucide-icon.json"
```

This will install the component source into your `components/ui/` directory.
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.components/1.lucide-icon.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: LucideIconDemo
## Installation

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/lucide-icon.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/lucide-icon.json"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.components/2.chat-message.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ name: ChatMessageDemo
## Installation

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/chat-message.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/chat-message.json"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.components/3.chat-messages.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: ChatMessagesDemo
## Installation

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/chat-messages.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/chat-messages.json"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.components/4.chat-prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: ChatPromptDemo
## Installation

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/chat-prompt.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/chat-prompt.json"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion content/docs/2.components/5.chat-prompt-submit.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ name: ChatPromptSubmitDemo
## Installation

```bash
npx shadcn-vue@latest add "https://shadcn-nuxt-ui.stackhacker.io/r/chat-prompt-submit.json"
npx shadcn-vue@latest add "https://ui.stackhacker.io/r/chat-prompt-submit.json"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "shadcn-nuxt-ui",
"name": "stackhacker-ui",
"type": "module",
"private": true,
"packageManager": "pnpm@10.15.1",
Expand Down
2 changes: 1 addition & 1 deletion public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/logo-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions registry.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Registry configuration for shadcn-nuxt-ui
* Registry configuration for stackhacker-ui
*
* This file defines the configuration options for generating registry.json files.
* Customize the settings below to match your project structure.
Expand All @@ -9,7 +9,7 @@ import { defineConfig } from "shadcn-vue-registry";

export default defineConfig({
root: ".",
name: "shadcn-nuxt-ui",
homepage: "https://shadcn-nuxt-ui.stackhacker.io",
name: "stackhacker-ui",
homepage: "https://ui.stackhacker.io",
cwd: "./app/registry",
});
2 changes: 1 addition & 1 deletion scripts/registry-build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { x } from "tinyexec";
const config = {
root: cwd,
name: pkg.name,
homepage: "https://shadcn-nuxt-ui.stackhacker.io",
homepage: "https://ui.stackhacker.io",
registries: components.registries,
cwd: registryPath,
output: registryPath,
Expand Down
Loading