{"id":30619011,"url":"https://github.com/funsaized/prompts.wine","last_synced_at":"2026-05-05T08:32:30.233Z","repository":{"id":311912306,"uuid":"1045545724","full_name":"funsaized/prompts.wine","owner":"funsaized","description":"A directory of instructions, agents, and workflows for LLMs \u0026 AI tools that have aged like fine wine ","archived":false,"fork":false,"pushed_at":"2026-03-30T11:59:43.000Z","size":934,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-30T13:17:36.379Z","etag":null,"topics":["agent","ai","nextsjs","prompt","prompt-engineering","shadcn-ui","tailwindcss","typescript","vercel"],"latest_commit_sha":null,"homepage":"https://prompts.wine","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/funsaized.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-08-27T10:48:50.000Z","updated_at":"2026-03-30T11:59:47.000Z","dependencies_parsed_at":"2025-08-27T20:41:04.513Z","dependency_job_id":"e3692e24-98c9-4ca9-8e2a-f8435152c403","html_url":"https://github.com/funsaized/prompts.wine","commit_stats":null,"previous_names":["funsaized/prompts.wine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/funsaized/prompts.wine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funsaized%2Fprompts.wine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funsaized%2Fprompts.wine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funsaized%2Fprompts.wine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funsaized%2Fprompts.wine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/funsaized","download_url":"https://codeload.github.com/funsaized/prompts.wine/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funsaized%2Fprompts.wine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32642007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent","ai","nextsjs","prompt","prompt-engineering","shadcn-ui","tailwindcss","typescript","vercel"],"created_at":"2025-08-30T12:16:31.697Z","updated_at":"2026-05-05T08:32:30.227Z","avatar_url":"https://github.com/funsaized.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Prompts Wine 🍷\n\n**🏠 Browse the knowledge base: [prompts.wine](https://prompts.wine)**\n\nA modern Next.js 15+ project showcasing a beautiful component library with shadcn/ui components, built with TypeScript, Tailwind CSS v4, and featuring a sleek dark theme by default.\n\n## ✨ Features\n\n- 🚀 **Next.js 15+** with App Router and Turbopack support\n- 🎨 **Tailwind CSS v4** for modern utility-first styling\n- 🌟 **shadcn/ui** components with custom theming\n- 🌙 **Dark theme** configured as default\n- 📱 **Responsive design** with mobile-first approach\n- 🔧 **TypeScript** for type safety\n- 📦 **Static export** configuration ready\n- ✨ **ESLint \u0026 Prettier** with strict rules\n- 🎭 **Component showcase** with interactive examples\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- npm, yarn, pnpm, or bun\n\n### Installation\n\n1. Clone the repository\n\n```bash\ngit clone \u003crepository-url\u003e\ncd prompts-wine\n```\n\n2. Install dependencies\n\n```bash\nnpm install\n# or\nyarn install\n# or\npnpm install\n```\n\n3. Run the development server\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n# or\nbun dev\n```\n\n4. Open [http://localhost:3000](http://localhost:3000) in your browser\n\n## 📁 Project Structure\n\n```\nprompts-wine/\n├── src/\n│   ├── app/\n│   │   ├── components/      # Components showcase page\n│   │   ├── globals.css      # Global styles \u0026 CSS variables\n│   │   ├── layout.tsx       # Root layout\n│   │   └── page.tsx         # Homepage\n│   ├── components/\n│   │   └── ui/             # shadcn/ui components\n│   │       ├── button.tsx\n│   │       ├── tabs.tsx\n│   │       ├── scroll-area.tsx\n│   │       ├── collapsible.tsx\n│   │       └── file-tree.tsx\n│   ├── lib/\n│   │   └── utils.ts        # Utility functions\n│   └── hooks/              # Custom React hooks\n├── public/                 # Static assets\n├── components.json         # shadcn/ui configuration\n└── content/               # Content files\n```\n\n## 🎨 Components\n\nThis project includes a comprehensive set of shadcn/ui components:\n\n- **Button** - Multiple variants (default, secondary, outline, ghost) with sizes\n- **Tabs** - Nested navigation with smooth transitions\n- **ScrollArea** - Custom scrollable content areas\n- **Collapsible** - Expandable/collapsible content sections\n- **FileTree** - Interactive file/folder tree component\n\nVisit `/components` to see all components in action with live examples.\n\n## 🛠️ Scripts\n\n- `npm run dev` - Start development server with Turbopack\n- `npm run build` - Build for production with static export\n- `npm start` - Start production server\n- `npm run lint` - Run ESLint\n- `npm run lint:fix` - Fix ESLint issues automatically\n- `npm run format` - Format code with Prettier\n- `npm run format:check` - Check code formatting\n- `npm run type-check` - Run TypeScript type checking\n\n## ⚙️ Configuration\n\n### Static Export\n\nThis project is configured for static export with:\n\n- `output: \"export\"` in `next.config.ts`\n- `trailingSlash: true` for proper routing\n- `unoptimized: true` for images\n\n### Tailwind CSS v4\n\nUsing the latest Tailwind CSS v4 with:\n\n- CSS variables for theming\n- Custom color palette\n- Dark theme as default\n- Responsive design system\n\n### shadcn/ui\n\nComponents are configured with:\n\n- TypeScript support\n- CSS variables for theming\n- Custom aliases for imports\n- Slate base color scheme\n\n## 🎨 Theming\n\nThe project uses a comprehensive theming system with CSS variables:\n\n- Dark theme by default\n- Green accent colors\n- Comprehensive semantic color tokens\n- Full contrast ratio compliance\n\n## 📱 Responsive Design\n\nBuilt with mobile-first responsive design:\n\n- Breakpoints: sm (640px), md (768px), lg (1024px), xl (1280px)\n- Flexible grid layouts\n- Responsive typography\n- Touch-friendly interactive elements\n\n## 🚀 Deployment\n\n### Static Export\n\nThe project is configured for static export and can be deployed to:\n\n- GitHub Pages\n- Netlify\n- Vercel\n- AWS S3\n- Any static hosting service\n\nBuild command:\n\n```bash\nnpm run build\n```\n\nThe built files will be in the `out/` directory.\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 📄 License\n\nThis project is open source and available under the [MIT License](LICENSE).\n\n## 🙏 Acknowledgments\n\n- [Next.js](https://nextjs.org) - The React framework\n- [shadcn/ui](https://ui.shadcn.com) - Beautiful UI components\n- [Tailwind CSS](https://tailwindcss.com) - Utility-first CSS framework\n- [Lucide React](https://lucide.dev) - Beautiful icons\n- [Radix UI](https://radix-ui.com) - Unstyled, accessible UI primitives\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunsaized%2Fprompts.wine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunsaized%2Fprompts.wine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunsaized%2Fprompts.wine/lists"}