https://github.com/zidvsd/relay
https://github.com/zidvsd/relay
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zidvsd/relay
- Owner: zidvsd
- Created: 2026-06-08T11:17:00.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-20T06:21:10.000Z (about 1 month ago)
- Last Synced: 2026-06-20T08:05:38.381Z (about 1 month ago)
- Language: TypeScript
- Size: 247 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
README
# Next.js template
This is a Next.js template with shadcn/ui.
## Adding components
To add components to your app, run the following command:
```bash
npx shadcn@latest add button
```
This will place the ui components in the `components` directory.
## Using components
To use the components in your app, import them as follows:
```tsx
import { Button } from "@/components/ui/button";
```